up vote 0 down vote favorite
share [g+] share [fb]

I have a site that has been up for some time. I had a blog on a subdomain for some time. I have decided to do away with the main site and just support the blog subdomain.

I have a redirect setup for this, but it carries all the extra parameters through to the blog which results in a file not found page appearing. I just want the redirect to go to the index page without parameters.

What I currently have in my .htaccess file is this

RewriteCond %{HTTP_HOST} ^.*$
RewriteRule ^/?(.*)$ "http\:\/\/blog\.foo\.org\/index\.php" [R=301,L]

When I get a request to

http://www.foo.org/foo/foo/?module=foo

it redirects to

http://blog.foo.org/foo/foo/index.php?module=foo

I want it to redirect to http://blog.foo.org/index.php

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

You have to specify the query in the replacement to override the original:

RewriteCond %{HTTP_HOST} !^blog\.example\.org$ [NC]
RewriteRule ^ http://blog.example.org/index.php? [R=301,L]
link|improve this answer
Makes sense. Tried it and it works like a champ. – user65810 Feb 13 '09 at 18:51
feedback
RewriteEngine On
Options +FollowSymlinks
RewriteCond %{HTTP_HOST} ^(www\.)?foo\.org$ [NC]
RewriteRule ^ http://blog.foo.org/ [R=301,L]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.