For apache webserver

Non-production environment

You need to enable `.htaccess` usage in the apache configuration. Add the code:


<Directory $path>
  AllowOverride All
</Directory>

Poduction environment

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.

For nginx webserver

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;