I have a question and I believe you can help me.
I want to let the two URL systems work on my site, I want to be friendly on some pages and leave the default form on another.
pagina.php?nome=Bruno
Would anyone know how to set .htacces
s to accept both patterns?
I'm already hiding .php with this code
RewriteEngine on<br>
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php