Reply
How to Change Domain Name on 8 Year Old Site
Old 09-23-2009, 10:48 AM How to Change Domain Name on 8 Year Old Site
Super Talker

Posts: 111
Name: Jonathan
Location: Arizona, USA
Trades: 0
Hello all.

I have a client who has a blog with 8 years of entries. She has recently decided to do a branding change.

Can someone help offer ways to accomplish changing her domain name while keeping the links in tact?

This is what she has... domainbrand1DOTcom. Has been blogging on it for 8 years.

This is what she wants... domainbrand2DOTcom. But keeping the same blog and content.

I'm concerned about keeping all the external links in working order but using the new domain name. Also want to be able to keep page ranking. (Not sure if that can be done because of domain name change).

How would you go about doing this?
__________________
LOOKAtMyPC - Computer Repair over the internet!
pcoptimized is offline
Reply With Quote
View Public Profile Visit pcoptimized's homepage!
 
 
When You Register, These Ads Go Away!
Old 09-23-2009, 11:04 AM Re: How to Change Domain Name on 8 Year Old Site
chrishirst's Avatar
Super Moderator

Posts: 22,221
Location: Blackpool. UK
Trades: 0
301 redirect the old name to the new
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
Growing old is mandatory - Growing up is optional
Code Samples | People Counting System | Bits & Bobs
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 09-23-2009, 04:56 PM Re: How to Change Domain Name on 8 Year Old Site
kline11's Avatar
Small fish in a big pond

Posts: 1,371
Name: John
Location: USA
Trades: 0
Do the 301 like Chris says. After 8 years, isn't her branding already established? Why the change? It would be like starting over.
__________________
SearchBliss Web Tools | Destiny
kline11 is offline
Reply With Quote
View Public Profile Visit kline11's homepage!
 
Old 09-26-2009, 11:44 PM Re: How to Change Domain Name on 8 Year Old Site
cpace1983's Avatar
Average Talker

Latest Blog Post:
When Not to Outsource
Posts: 21
Name: Christopher Pace
Trades: 0
301 Redirect, and then let Google know about it through the "change of address" link under Site configuration on the Google Webmaster Tools.
__________________
I am a Linux server consultant.
I offer flat rate Linux support, as well as hourly support.
My wife is a Billings, Montana photographer
cpace1983 is offline
Reply With Quote
View Public Profile
 
Old 09-30-2009, 11:32 AM Re: How to Change Domain Name on 8 Year Old Site
Novice Talker

Posts: 4
Trades: 0
Yup 301 direct.
magedassad is offline
Reply With Quote
View Public Profile
 
Old 09-30-2009, 11:36 AM Re: How to Change Domain Name on 8 Year Old Site
Super Talker

Posts: 111
Name: Jonathan
Location: Arizona, USA
Trades: 0
Hey thanks for the replies.
I'll look at the 301 redirect option.

I agree, 8 years, she has done great branding, but she wants to do the new name. The site is currently her real name, but she wants to move it more into a "product" name. :-)

Thanks again.
__________________
LOOKAtMyPC - Computer Repair over the internet!
pcoptimized is offline
Reply With Quote
View Public Profile Visit pcoptimized's homepage!
 
Old 09-30-2009, 11:44 AM Re: How to Change Domain Name on 8 Year Old Site
Novice Talker

Posts: 8
Name: gilbert
Trades: 0
301 redirect to new domain name.
mrgilb is offline
Reply With Quote
View Public Profile
 
Old 10-06-2009, 12:56 PM Re: How to Change Domain Name on 8 Year Old Site
rednimaT's Avatar
Skilled Talker

Posts: 65
Name: Taminder B.
Location: San Jose, CA
Trades: 0
301 redirect your main domain to the new main domain
do the same if you have sub-domains as well.

if you want to only redirect a certain page, use this code in your HTML:
Code:
     header("HTTP/1.1 301 Moved Permanently"); 
    header("Location: http://www.thenewwebsite.com");
if you want to move the entire website, place this code in your .htaccess file:
Code:
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.thenewwebsite.com/$1 [R=301,L]
if you run Ruby on Rails, you can also do this:
Code:
def old_action
headers["Status"] = "301 Moved Permanently"
redirect_to "http://www.thenewwebsite.com/"
end
__________________
NRG Lab - Web Design Services & Resources
(HTML/PHP/MySQL/JavaScript/AJAX/SEO)
rednimaT is offline
Reply With Quote
View Public Profile Visit rednimaT's homepage!
 
Reply     « Reply to How to Change Domain Name on 8 Year Old Site
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 



Page generated in 0.13187 seconds with 13 queries