Forum Moderators: phranque
RewriteEngine on
RewriteRule ^run(.+) /example.php?$1 [L]
this will do fine with:
[domain.com...]
(it rewrites to: [domain.com...]
but I want it to work with the following url:
[domain.com...]
I thought I could just escape the . and? with backslashes to make this work:
RewriteEngine on
RewriteRule ^run\.cgi\?(.+) /example.php?$1 [L]
But that always produces errors. Does anyone know how can I do this?
For more information, check out Changing dynamic URLs to static URLs [webmasterworld.com] in our forum library.
Jim