Hello, recently I used a .htaccess file to move my entire site. I used this one line code to do it:
Redirect 301 /olddirectory http://yoursite.com
Is the line above any different from this line below:
RedirectPermanent 301 ^/(.*) http://www.newsite.com/$1
The redirection with the first line worked as in it did redirect, but I want to make sure I do the correct permanent redirecting and not get google mad at me, etc.
Thanks, 
|