I've a page like this link: www.mysite/lab/index.php?pagina=blablabla
I used .htaccess with this settings:
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule ^([A-Za-Z0-9]+)$ ./index.php?pagina=$1 [QSA,L] If I go on www.mysite/lab/blablabla I don't see my page but I've error page not found
I've page in www.mysite/lab/ and other 3 folders, can I use ELSE IF in .htaccess?
?pagina==$1intentional?