I recently submitted my site to Scrub the Web. It came back with this error message:
Warning: The URL you entered sent a redirect Location: HEADER response. Below are the redirect Location: HEADER responses sent by your Web server which the analyzer followed in the order received:
Redirect URL: http://selfpublishingreview.com/
Redirection like this can cause problems with all major search engines and is the reason for our warning. The report below is based on the information found at the final URL location shown above and is the URL we recommend is submitted to search engines until you solve this problem.
Someone recommended I add:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^selfpublishingreview.com
RewriteRule (.*) http://www.selfpublishingreview.com/$1 [R=301,L]
What would be my resulting file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^selfpublishingreview.com
RewriteRule (.*) http://www.selfpublishingreview.com/$1 [R=301,L]
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
_________________
Should I add or delete anything in there? Thanks, new to this.