Thread: 301 Redirect
View Single Post
  #6 (permalink)  
Old 12-21-2007, 10:55 AM
Jean-Luc Jean-Luc is offline
WebProWorld Pro
 
Join Date: Dec 2007
Location: Brussels, Belgium
Posts: 164
Jean-Luc RepRank 2
Default Re: 301 Redirect

I would try this:
Code:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.mysite\.com$
RewriteRule ^(.*)$ http://www.mysite.com/f/$1 [L,R=301]
RewriteRule ^f\/ - [L]
RewriteRule ^(.*)$ http://www.mysite.com/f/$1 [L,R=301]
This .htaccess should redirect any hit on the www site to the /f directory and any other subdomain to the /f directory of the www site.

Jean-Luc
__________________
Checking redirects made easy | | Professional AWStats Services
Reply With Quote