For apache webserver
You need to enable `.htaccess` usage in the apache configuration. Add the code:
<Directory $path>
AllowOverride All
</Directory>
It's recommended to configure the document root to look at the `public` directory and create an alias for the `client` directory. The code to add to the apache configuration:
DocumentRoot $path/public/
Alias /client/ $path/client/
And allow override for the `public` directory:
<Directory $path/public/>
AllowOverride All
</Directory>
More detals in the documentation.
You need to configure the document root to look at the `public` directory and create an alias for the `client` directory. More detals in the documentation.
EOL;