Recently changed primary domain name from lostnbr.com to caceres-mt.com; caceres-mt.com was a parked domain and now lostnbr.com is. There was some slight hiccup ... I wrote a ticket, the tech guys fixed it and now everything works great. YEEEEAAAA!!!
So I am reading the lunarpages newsletter and they suggest the 'woorank website analysis tool' so I run that and find a lot of little fixable problems; one being woorank suggests that I should put in a redirect for all caceres-mt.com requests to resolve
www.caceres-mt.com. So I created a '.htaccess.' file and put the following code in:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^caceres-mt\.com$ [NC]
RewriteRule ^(.*)$ http://www.caceres-mt.com/$1 [R=301,L]Which works fine ... YEEEAAA!!!
But then I start thinking about the Google search results for the site that come up and they still point to lostnbr.com or
www.lostnbr.com. and should now be pointing to
www.caceres-mt.com. So I put the new primary domain on a Google webmaster tools account and went to 'moving your site' where it says: "Don't do a single redirect directing all traffic from your old site to your new home page. This will avoid 404 errors, but it's not a good user experience. It's more work,
but a page-to-page redirect will help preserve your site's ranking in Google while providing a consistent and transparent experience for your users." Okay so I insert the following code, recommended by lunatics,
http://blog.lunarpages.com/2009/03/13/golden-rule-on-redirects-to-keep-google-happy/ to
Keep Google Happy:
Redirect 301 /index.html http://www.caceres-mt.com/index.html
Redirect 301 /info/hotels.html http://www.caceres-mt.com/info/hotels.html
Redirect 301 /info/links.html http://www.caceres-mt.com/info/links.html
Redirect 301 /info/transp.html http://www.caceres-mt.com/info/transp.html
Redirect 301 /content/faviloco.html http://www.caceres-mt.com/content/faviloco.html
Redirect 301 /content/faviloco-daveron.html http://www.caceres-mt.com/content
/faviloco-daveron.html
Redirect 301 /content/faviloco-fawcett.html http://www.caceres-mt.com/content/faviloco-fawcett.html
Redirect 301 /content/faviloco-matschat.html http://www.caceres-mt.com/content/faviloco-matschat.html
Redirect 301 /content/faviloco-strauss.html http://www.caceres-mt.com/content/faviloco-strauss.html
(with spaces)But I get some kind of 400 number errors and the Google links won't resolve. I tried this alternate code:
Redirect permanent /index.html http://www.caceres-mt.com/index.htmlBut the server chases it's tale and mine at this end times out on some kind of circular error. So I ended up using the single redirect, which works just fine, but that Google says not to:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^.*lostnbr\.com$ [NC]
RewriteRule ^(.*)$ http://www.caceres-mt.com/$1 [R=301,L]Now I am in Big Trouble ... or am I?
Does anyone know why the individual redirects won't work as written?
Does anyone know why I shouldn't use the single redirect?
Should I write a work ticket and ask the tech guys?
Any insight would be appreciated!!!
Thanks!!