I have put various htaccess 301 redirect codes and forwarded old domain to new domain at Godaddy. When checking via browser it states 404. Using a redirect checking tool, it states that it has redirected??? I have also tried a few of the wp plugins for this(redirection etc)
OLD Domain: compareelectricalgoods.com
New Domain: gizmosnoop.com
Any suggestions???
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !gizmosnoop.com$ [NC]
RewriteRule ^(.*)$ http://gizmosnoop.com/$1 [L,R=301]
#BEGIN ReviewAZON Image ReWriting
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^images/r/(.*)$ http://gizmosnoop.com/wp-content/plugins/reviewazonpro/resources/images/$1 [R,L]
</IfModule>
#END ReviewAZON
#BEGIN ReviewAZON Image ReWriting
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^images/p/(.*)$ http://ecx.images-amazon.com/images/I/$1 [R,L]
</IfModule>
#END ReviewAZON
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
<blockquote>