Forum Moderators: phranque
[mydomain.com...]
to this url:
[mydomain.com...]
I manage to rewrite all requests for the index.php to the directory, but when I add the "?ad=03" it stops working.
Here is the line I thought should work:
RewriteRule ^index\.php?ad=03$ s-17/ [L]
I have also tried escaping both the question mark and the equal sign without that helping.
Does anyone know how to do this?
RewriteCond %{QUERY_STRING} ^ad=03$
RewriteRule ^index\.php$ /s-17/ [L]
Jim