My .htaccess file looks like this:
RewriteEngine ON
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?secao=$1
I want to translate to url www.meusite.com/index.php?secao=quemsomos to www.meusite.com/quemsomos
Is it correct the way I put it? Because it is not working.