Can you see something wrong in my .htaccess?
- by AlexV
OK, after many search, trial and errors I've managed to create an .htaccess that do what I wanted (see explanations and questions after the code block):
<IfModule mod_rewrite.c>
RewriteEngine On
#1 If the requested file is not url-mapper.php (to avoid .htaccess loop)
RewriteCond %{REQUEST_FILENAME} (?<!url-mapper\.php)$
#2 If the…