Questions
-
301 Redirects
It's failing because of the order. With Redirect 301 / http://www.healthpointe.net first, all other pages that were after / will not work. Also, going to David's answer, redirecting a /index.html is a special case, and there are a few ways around it such as using DirectoryIndex index.html at the top of the file or with a rewrite condition such as: RewriteCond %{THE_REQUEST} ^./index.htmlRewriteRule ^(.)index.html$ http://www.domain.com/$1 [R=301,L]
Technical SEO Issues | | TheeDigital0 -
301 Redirects
It looks like your last line is just redirecting one page? This has worked for me to redirect them all to their corresponding pages on the new domain (*You'll want to test this first): <code>RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !newdomain.com$ [NC] RewriteRule ^(.*)$ http://newdomain.com/$1 [L,R=301]</code>
Moz Pro | | Everett0