Pointing .co.uk, .org & .info to main .com domain
Pointing .co.uk, .org & .info to main .com domain - If a page has internal and external outgoing links to redirecting URLs, it’s returning 3xx (301, 302, etc.) HTTP status codes standing for redirection. This issue means that the page does not exist on a permanent or temporary basis. It appears on most of the popular web browsers, usually caused by a misconfigured website. However, there are some steps you can take to ensure the issue isn’t on your side. You can find more details about redirecting URLs by reading the Google Search Central overview. In this article, we’ll go over how you can fix the Pointing .co.uk, .org & .info to main .com domain error on your web browser. Problem :
Solution :
We hope that this article has helped you resolve the domains, redirects, top-level-domains error in your web browsers. Enjoy browsing the internet uninterrupted!
I have a client who has multiple domains .co.uk, .org and .info and would like to point them to the main .com domain name.
They have changed the nameservers of the .co.uk, .org and .info domains.
Can anyone point me in the right direction?
In order to redirect .co.uk, .org and .info to .com, good practices refer to use 301 redirections. There are various method to apply these redirections. My favourite are:
Doing it with .htaccess file if you use Apache web server (or specific file for another web server)
You can follow this for more information.
Doing it with index.php file on other TLDs root. Here's an example:
header("Status: 301 Moved Permanently", false, 301);
header("Location:http://www.example.com");
exit();
Comments
Post a Comment