Thread: 301 in htaccess
View Single Post
  #7 (permalink)  
Old 01-07-2008, 11:38 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 in htaccess

Your code is not valid.

Code:
redirect 301 store http://www.site2.com/store
This code redirects URL's like http://www.site1.com/store/this_url to http://www.site2.com/store/this_url.

Code:
RewriteEngine on
RewriteRule ^store(.*)$ http://www.site2.com/store/ [L,R=301]
This code redirects URL's like http://www.site1.com/store/this_url to http://www.site2.com/store/.

Place this .htaccess file in the home directory of site1.com.

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