Hey guys, How would I rewrite a specific page to a different domain...I've tried this, but it isn't working: RewriteEngine On RewriteRule ^/forums/posting.php?mode=topicreview&t=350$ http://www.example.net/
Just do a redirect: redirect 301 /forums/posting.php?mode=topicreview&t=350 http://www.example.net/ Code (markup):
it works for just /forums/posting.php but when you add the "?mode=topicreview&t=350" it throws it off for some reason...any thoughts?
Options +Indexes Options +FollowSymlinks RewriteEngine on RewriteBase / RewriteRule ^forums/posting.php?mode=topicreview&t=350$ http://www.example.net/ [R=301,L]
Doesn't seem to be working...which folder would I need it in? The main or the forum folder? I've got it in the main...
Did you try escaping the . and ? in the URL? redirect 301 /forums/posting\.php\?mode=topicreview&t=350 http://www.example.net/ Code (markup): or Options +Indexes Options +FollowSymlinks RewriteEngine on RewriteBase / RewriteRule ^forums/posting\.php\?mode=topicreview&t=350$ http://www.example.net/ [R=301,L] Code (markup):