Forum Moderators: phranque
I´m searching for a mod_rewirte rule to:
[domain.com...] -> [domain.com...]
Because I need these GET-string-parameters at any time, I cant use the Alias directive in the httpd.conf.
Of course there will be no directory named "foo" ... also there is no trailing slash problem at this server ...
I´m not very familiar with regex and/or mod_rewrite, the apache docs and google results had not helped me, so I like to ask here ....
could anybody help? Thanks a lot!
Stefan
internal rewrite
RewriteEngine On
RewriteRule ^(.*) xyz.php?abc=$1 [L,QSA]
external redirect
RewriteEngine On
RewriteRule ^(.*) [domain.com...] [R,L,QSA]