Which is best way to redirect 301 ?

Nody Khan

Newbie
Joined
Sep 23, 2019
Messages
19
Reaction score
0
There is a two way to redirect one domain to another domain ...
1. Using. Htaccess file
2. Using Change setting from the domain provider

Which one is the best way of 301 redirections for SEO?
After domain forwarding my old domain will stay indexed or not?

Thank You in advance :)
 
Both are ok.

There is no best way. 301 redirection is 301 redirection.

After redirection, google will start deindexing old domain.
 
There is a two way to redirect one domain to another domain ...
1. Using. Htaccess file
2. Using Change setting from the domain provider

Which one is the best way of 301 redirections for SEO?
After domain forwarding my old domain will stay indexed or not?

Thank You in advance :)
1
You do at the domain level so you don't need hosting, so you could say it's better as you can get rid of it so not t need to set up the hosting just for a redirect
 
There is a two way to redirect one domain to another domain ...
1. Using. Htaccess file
2. Using Change setting from the domain provider

Which one is the best way of 301 redirections for SEO?
After domain forwarding my old domain will stay indexed or not?

Thank You in advance :)

Using cloudflare is always good for me.
 
Straight from domain registrar will save you the hassle of hosting..
 
If you think that a brainless redirect on the registrar level will actually have some SEO benefit, then you should invent a time machine and move to 2010 mate.
 
There is a two way to redirect one domain to another domain ...
1. Using. Htaccess file
2. Using Change setting from the domain provider

Which one is the best way of 301 redirections for SEO?
After domain forwarding my old domain will stay indexed or not?

Thank You in advance :)

add rel="canonical" from old pages to new and a month later 301 htaccess
 
What about dns redirect? it is also a way ( via cloudflare)
 
Remove pages with 301 status codes from your sitemap or make sure the HTTP version of your site redirects to HTTPS. every website should use HTTPS
 
use a WordPress redirect plugin super easy, if you want to keep your old sites indexed there is an option in simple website redirect plugin to exclude certain paths/pages from being redirected.
 
Cloudflare is the best way to 301 Redirect Buddy
 
Redirect page by page. For example, if you've links to two URLs on the old site, create two pages on the new site and redirect the URL for each of those old pages to the equivalent URL on the new site.

If you've only links to the home page, then you can redirect using the setting from the domain provider.

What you shouldn't do is redirect all URLs on the old site to a single page on the new site.
 
1.website redirect plugin
2 Using. Htaccess file
3. Using Change setting from the domain provider
 
If you think that a brainless redirect on the registrar level will actually have some SEO benefit, then you should invent a time machine and move to 2010 mate.
@Nargil If an auction domain that I am looking to 301 redirect to my money site, is only one page/visit card type/portfolio. I can set up like - mydomain.com/auctiondomain - and redirect there, and post that one-page content there, with my sites header/footer?
 
this is my personal way to redirect: makes a .php file and inside put

<?php
header("X-Robots-Tag: noindex", true);
header("HTTP/1.1 301 Moved Permanently");
header("location: //YOUR-REDIRECT-URL");
exit();
?>

replace //YOUR-REDIRECT-URL with the redirect link.
Note that the x-robots-tag is for avoid indexing by Google. You can also add the nofollow tag if none of these links are already indexed in the SERP;
in such way you also avoid to lose link juice.
 
Back
Top