Somehow when I use a specific friendly URL the rewriterule doens't work.
Does anyone know what I am doing wrong?
Below my code within the .httaccess file
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
When I try the following URL everything goes fine:
However when I use the following URL the rewrite doens't happen:
Thanks in advance.