301 redirect exposed, help needed!

sheries

Newbie
Joined
Apr 26, 2021
Messages
31
Reaction score
16
Hello,

I have multiple domains redirecting 301 to the money site ( page to page )

The issue is, when i use any SEO software to analyze my backlinks
it shows the redirect and the anchor text as 301.

How do i hide it ? what is the normal way to redirect domains and make it look very natural
not like i have 40 urls 301 redirects with an anchor text 301 ( very exposed ) !!!



What i do is: i set the ( A record ) in the DNS of each domain to my server IP + i add it to the Cpanel as an ( ALIAS ).

i do this to make sure that https links redirect will work .

Then i use those codes in the Htaccess :


First redirecting main home page of each domain like this :

RewriteCond %{HTTP_HOST} ^first-website.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.first-website.com$ [NC]
RewriteRule ^/?$ https://money-site.com/1 [R=301,L,NC]


RewriteCond %{HTTP_HOST} ^second-website.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.second-website.com$ [NC]
RewriteRule ^/?$ https://money-site.com/2 [R=301,L,NC]



Then redirecting each page of each domain like this :

RewriteCond %{HTTP_HOST} ^first-website.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.first-website.com$
RewriteRule ^old-url-1.html$ https://money-site.com/3 [R=301,L,NC]
RewriteRule ^old-url-2.html$ https://money-site.com/4 [R=301,L,NC]


RewriteCond %{HTTP_HOST} ^second-website.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.second-website.com$
RewriteRule ^old-url-3.html$ https://money-site.com/5 [R=301,L,NC]
RewriteRule ^old-url-4.html$ https://money-site.com/6 [R=301,L,NC]


My regards,
 
How do i hide it ? what is the normal way to redirect domains and make it look very natural

Very natural to whom?
To Google? That number of redirects will never be natural to Google
To Ahrefs readers? They don't give fk
To your visitors? It's fine that way

Personally, I will never use more than 2 or 3 at most redirects to just one money site. If I need to move juice, I prefer to build something on top of those pages, and just interlink. Can be slightly costly, but worth to be done. Otherwise, it won't be worthy at all to hold those domains.
 
There's no way actually to remove it, but the only thing that you could do is to block ahrefs bot from crawling the 1st domain so they will not find out it's redirecting to the 2nd

just add the following to robots.txt
User-agent: AhrefsBot
Disallow:/
 
1. I thought that there can be another method or some other htaccess code that can show ( the redirect as a backlink or so )
like to just hide the redirected domains and show the page on my website + the backlinks coming to the ( redirected domains )
instead of showing a clear exposed 301 redirect anchor to any software.

2. As long as you pick good domains + write the relative content, it will be natural to redirect even 100 domains.

Thank you guys for the reply.
 
Back
Top