Help with changing of website URL

Status
Not open for further replies.

Amateur

New Member
Hi all,

Wonder if someone could help me. Let me explain my situation.

I have a client with a website and a domain name - http://www.aaaaa.com

The client has changed their business name and therefore has purchased a new domain name - http://www.bbbbb.com

So what I want to achieve is:

I would like this to be achieved without effecting the SEO of the website.

*URL's above are only for illustration, not the actual websites.

Could someone please assist me with this?

Thanks in advance.
 

louie

New Member
Have a look into 301 permanent redirect.
If the new website has the same URL as the old one, you can code the header to redirect to the new domain, but exactly to the same page
PHP:
//old url = http://www.aaa.com/xxx_1.html
header("Location: http://www.bbb.com/xxx_1.html" , true, 301);
exit();
hope this help
 

Amateur

New Member
Thanks for your assistance.

Yes the domain names are different.

Unfortunately the site is not php but a ASP.NET site. Is there another approach I could take?
 

Amateur

New Member
Thanks for your help Paul.

I will look to include a 301 redirect on entry point to site and change URL's based on such.
 
Status
Not open for further replies.
Top