Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+6 votes
308 views
in Q2A Core by
I have an old site in which there are 60,000 penalized questions from Google, with a manual procedure. I would like to redirect the old domain to the new domain

 My question: What is the best way to redirect the old domain to the new domain?

 An expert is required to do this for a fee
Q2A version: Question2Answer: 1.8.6
by
If you're looking to hire a webserver administrator I strongly recommend you go to a job board. This is not the right place for it.
If you want to ask a question about Q2A, please provide enough detail so that people have a chance to actually answer the question without having to make wild guesses. For a question about website redirection that includes at the very least what kind of webserver (Apache, Nginx, IIS, LiteSpeed, ...) the source and destination sites are running on.

Also, please stop repeating your question titles in the tags field. That's not what the field is for.

1 Answer

0 votes
by
The best way to redirect an old domain to a new domain depends on a few factors, such as the reason for the domain change and the type of website you're running. Here are a few methods that you can use:

1. 301 Redirect: A 301 redirect is the most commonly used method for redirecting an old domain to a new domain. This type of redirect tells search engines and web browsers that the content has permanently moved to a new location. To set up a 301 redirect, you can add the following code to your .htaccess file on the old domain:

RewriteEngine on

RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L]

Replace newdomain.com with the URL of your new domain.

2. Domain Registrar Redirect: If you registered your domain with a third-party domain registrar, such as GoDaddy or Namecheap, you may be able to set up a domain redirect through their control panel. Look for an option called "domain forwarding" or "domain redirect" and enter the URL of your new domain.
by
i will try to add since i feel like i'm qualified for this kind of question,

3. change your IDS / IPS (ex. cloudflare) to new server

imho the first answer only works for apache web server, nginx and litespeed use different method.
by
Hello, please help me move a site from the old domain to the new domain
by
is your site created by Q2A ????
...