Thread: 301 Redirect
View Single Post
  #1 (permalink)  
Old 11-01-2007, 10:13 PM
magosla2001 magosla2001 is offline
WebProWorld New Member
 
Join Date: Jul 2007
Posts: 9
magosla2001 RepRank 0
Default 301 Redirect

I tried a 301 redirection to my blog with the below script;

Code:
 
RewriteEngine On
RewriteCond %{HTTP_HOST} !^(.*)\.magnuslator\.com$ [NC]
RewriteRule ^(.*)$ http://www.magnuslator.com/weblog/$1 [R=301,L]
RewriteEngine On
RewriteCond %{HTTP_HOST} !^(.*)\.www\.magnuslator\.com$ [NC]
RewriteRule ^(.*)$ http://www.magnuslator.com/weblog/$1 [R=301,L]
The problem i experience is it redirects to Magnus Lator instead of Magnus Lator.
Reply With Quote