![]() |
301/302 Redirect Question
I'm overhauling an old TGP site, new CMS/script, same content, which means all the current URL's on this site that are in the search engines will be replaced with new URL's - from an SEO perspective what's the best way of handling this to minimize SEO losses?
thanks |
I typically end up using something like this.
Code:
RedirectMatch permanent ^/somepath/(.+) http://www.domain.com/newpath/$1 |
Quote:
:thumbsup +1 |
Quote:
redirectMatch 301 ^/somepath/(.+) http://www.domain.com/newpath/$1 |
seomoz says to use a 301 permanent, not a 302 temporary:
http://www.seomoz.org/learn-seo/redirection That's handy because as I understand it, yours really is a permanent change and in general it's best to actually follow that standards, for various reasons. |
Quote:
i'm using the same domain, all old gallery URL's will be gone, so want all the old gallery URL's that are in search engines to just redirect to the main page of the domain. |
Quote:
|
Quote:
what's the '^' for in yours? |
Quote:
Code:
RedirectMatch permanent ^/?galleries/(.+) http://www.domain.com/newgalleries/$1 Quote:
|
Quote:
Depending on your server setup, the paths/pages might or might not start with the "/" So I usually do it like this (which I missed in my first post) RedirectMatch permanent ^/?galleries/......... The ? means that the "/" may or may not be there. |
Quote:
|
Quote:
|
use 301, and I would get a professional to set it up, one wrong character in the redirect code and it could completely destroy your search engine rankings...
hit me up if you need a hand with it.... |
All times are GMT -7. The time now is 12:50 PM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123