Mobile app version of vmapp.org
Login or Join
Cody1181609

: Changing domain name - what are the practical steps involved Possible Duplicate: How do I rename a domain and preserve PageRank? I launched a website a couple of years ago, bright

@Cody1181609

Posted in: #Apache #Apache2 #DomainForwarding #Domains #Redirects

Possible Duplicate:
How do I rename a domain and preserve PageRank?




I launched a website a couple of years ago, bright eyed and bushy tailed, with dreams of conquering the world. Unfortunately it wasn't to be. Now, that I am a bit older and wiser, I have spent some money on branding and creating more quality content etc, I am re-branding and relaunching the site with a new domain name.

Although the traffic on the old site is laughable (i.e. non-existent), there are a few pages of good information on there and I don't want to lose any "juice" those pages may have gained because web crawlers have been seeing it for a few years now.

OK, the upshot of all that is this: I want to change my domain name from example.com to example.org. I am maintaining the same friendly urls I had before, only the domain name part of the url will change, so that any traffic coming to the old page will be forwarded/redirected? to the new page seamlessly.

How do I go about achieving this (i.e. what are the steps I need to carry out, and to minimize any "disruption" to any credibility the existing site has with Googlebot etc?

I am running Apache 2.x on a headless Linux (Ubuntu) server.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Cody1181609

1 Comments

Sorted by latest first Latest Oldest Best

 

@Angela700

Just make sure that example.com redirects to example.org, Apache can be rather easily configured to do this, for example using the following configuration:

<VirtualHost *:80>
ServerName example.com
Redirect permanent / example.org/ </VirtualHost>

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme