Link to home
Start Free TrialLog in
Avatar of hankknight
hankknightFlag for Canada

asked on

mod_rewrite: redirect specific get query

Using .htaccess and mod_rewrite I want to redirect this:
http://example.com/index.php?option=com_sitemap&view=xml 

To this:
http://example.com/sitemap.xml [L,R=301]

My code below does NOT work:
RewriteRule ^index.php?option=com_sitemap&view=xml http://example.com/sitemap.xml [L,R=301]

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of David S.
David S.
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Try
RewriteRule "^/index.php.*" site.xml [L,R=301]