I have the following problem, I need to redirect the following url:
site/nossos-socios.php?termo=teste
for
site/nossos-socios/?q=teste
I need to have the interrogation before q =, I tried to use the escape with the interrogation, but it does not work.
Follow my .htaccess below, it redirects only to nossos-socios/q=aço
:
RewriteRule ^nossos-socios/q\=([^/.]+)?$ nossos-socios.php?termo=$1 [NC,L]