Hello,
As htaccess files don't work on nginx, I would like to know how I can use the following htaccess code to make it work on nginx :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /nos-produits-bio/
RewriteRule ^boutique\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /nos-produits-bio/boutique.php [L]
</IfModule>
For any help, I would be grateful.
Jérémy.