sheries
Newbie
- Apr 26, 2021
- 31
- 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,
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,