I am looking to redirect the URL http://www.example.com/user_pages/home_0.shtml?page=Home to http://www.example.com/. I have it redirecting to http://www.example.com/? using the following RedirectMatch:
RedirectMatch 301 ^/user_pages/home_0.shtml http://www.example.com/?
I was hoping that someone could help me figure out how to remove the trailing question mark. I understand that is the way I have it setup but that is the farthest I could get to matching what I need.
Secondary question but I think it falls in line with what I am doing here. I have the following RedirectMatch setup:
RedirectMatch 301 ^/user_pages/contactus_0.shtml http://www.example.com/help.php?section=contactus&mode=update
I am attempting to redirect http://www.example.com/user_pages/contactus_0.shtml?page=Contact%20Us to http://www.example.com/help.php?section=contactus&mode=update but I end up with http://www.example.com/help.php?section=contactus/user_pages/contactus_0.shtmlmode=update. I understand this is caused by the additional query string but I am at a lose on how to fix. Any help is appreciated.
http://www.example.com/user_pages/contactus_0.shtml?page=Contact%20Usto be redirected tohttp://www.example.com/help.php?section=contactus&mode=updateor is it the order way around? If, in fact, the question reflects what you want, ¿how do you expect anyone to enter page=Contact%20Us? – faa Dec 5 '12 at 5:03RewriteCond %{QUERY_STRING} ^page=Contact%20Us.*$ RewriteRule .* http://www.example.com/help.php?section=contactus&mode=update? [L,R=301]– helmsui Dec 5 '12 at 13:30http://www.example.com/help.php?section=contactus&mode=update%3f. So it looks like%3fis the trailing ? I was adding to the statement. I have removed that resulting inRewriteCond %{QUERY_STRING} ^page=Contact%20Us.*$ RewriteRule .* http://www.example.com/help.php?section=contactus&mode=update [L,R=301]which works perfectly. – helmsui Dec 5 '12 at 13:45