I have a blog that I'm trying to redirect to a different domain.
- Old domain:
http://harrisonfjord.com
- New domain:
http://agoodman.com/blog/
Google states that you should do 301 redirection for all pages, so I took a list of urls from my XML sitemap and just manually set up the redirection.
Here's what I've put in my .htaccess file: http://pastebin.com/PkKNbJKf
The file structure is the same across both domains, so I can simply redirect each page as follows:
redirect 301 http://harrisonfjord.com/ http://agoodman.com.au
redirect 301 http://harrisonfjord.com/whatever http://agoodman.com.au/blog/whatever
However, this currently isn't working. Do I need to put the redirection in an tag or something?