301 ridirection method need help!

Abdullah Prem

Regular Member
Joined
Mar 9, 2017
Messages
357
Reaction score
146
I have a expired domain which i want to ridirect to new domain

say that i want to

old domain(root) - 301 - new domain (root)
&
old domain (pages) - 301 - new domain(pages)

cause the expired domain has 40% home page links and 60% links on best pages. I want to both to happen.

Any httaccess code to do both work at the same time?
 
i wouldnt fuck with codes. i would manually hard code in each page to each page. no root 301-ing from registrar. that will pretty much do not shit from what i know and from what i have read from @Nargil
 
The expired domain will only grow with it original backlinks if the website is built like old days.

The 301 can be done from your domain provider.

You need to point the 301 to the base root of the active domain.

Traffic will flow to active domain.

The backlinks will be ok for both if the old website is added to the domain correctly .
 
I wouldn't fuck with codes. I would manually hard code on each page to each page. no root 301-ing from registrar. that will pretty much do not shit from what i know and from what i have read from @Nargil
Who told you this crap.
If that was true we wouldn't have DNS servers or mod rewrite apache functions .

301 redirecting no harm at all.

Watch what you read.

301 can be done thu htaccess apache server and 301 direct from Dns domain provider

Both reliable
 
The expired domain will only grow with it original backlinks if the website is built like old days.

The 301 can be done from your domain provider.

You need to point the 301 to the base root of the active domain.

Traffic will flow to active domain.

The backlinks will be ok for both if the old website is added to the domain correctly .

s i can do 301 expired root to active domain root.
But how to do old relevant pages 301 to new relavant pages at the same time?
 
Who told you this crap.
If that was true we wouldn't have DNS servers

301 redirecting no harm at all.

Watch what you read.
my interpretation 100% could be wrong so do not quote me at all. i have very little personal experince with 301's. but i have read i think from @Nargil and have heard elsewhere and it makes sense to me too, that 301-ing from registrar is far less effective than 301-ing each page to each page of the new domain.

also never said 301-ing wasnt safe....? although on the topic i do not think its bulletproof. i think shit could most certainly go wrong quite easily.
 
There no way @Nargil is saying it not possible.

Nargill deal in expired domains, if the domain and expired website are set up correctly there be no problem at all.

nargill given advise from a beginners setup point of view, there no harm using 301 access with apache code or domain direct .
 
s i can do 301 expired root to active domain root.
But how to do old relevant pages 301 to new relavant pages at the same time?
Old relevant page use the backlinks to pass traffic from old to new from the 301 setup.

That whole purpose

301 only redirecting traffic when the page is landed on...

If someone from your backlink go on the old website they will be automatically redirected to new web page/domain.
 
There no way @Nargil is saying it not possible.

Nargill deal in expired domains, if the domain and expired website are set up correctly there be no problem at all.

nargill given advise from a beginners setup point of view, there no harm using 301 access with apache code or domain direct .
Also static page would be done with javascript to foward all traffic less safety method.
 
Redirect the root backlinks to the homepage of your site and then recreate the pages with the greatest amount of backlinks on your site and redirect the pages of the expired domain to them. Then to pass juice use internal links.
 
There no way @Nargil is saying it not possible.

Nargill deal in expired domains, if the domain and expired website are set up correctly there be no problem at all.

nargill given advise from a beginners setup point of view, there no harm using 301 access with apache code or domain direct .

What I have always advised with 301s is to do them at the hosting level. Mainly because people have a tendency to just buy a domain, never even host it or restore it and then redirect it from registrar level. That might work, but it significantly lowers the chance of having any benefit out of the redirect.

Once the domain is hosted, restored, slightly aged, has its rank back to some extent and links show in GSC, then is the time to redirect it. Doesn't matter whether it's from hosting or registrar level at that point. I sitll prefer my good ol' Htaccess, because I can't code for shit.
 
i suggest you buy expired domain already backlinks in 301 redirect links is easy your any business site.
 
I have a expired domain which i want to ridirect to new domain

say that i want to

old domain(root) - 301 - new domain (root)
&
old domain (pages) - 301 - new domain(pages)

cause the expired domain has 40% home page links and 60% links on best pages. I want to both to happen.

Any httaccess code to do both work at the same time?

Use this code, it works in both cases

#OLD Domain to NEW Domain
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^olddomain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.olddomain.com$
RewriteRule (.*)$ http://www.newdomain.com/$1 [R=301,L]
</IfModule>
 
Use this code, it works in both cases

#OLD Domain to NEW Domain
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^olddomain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.olddomain.com$
RewriteRule (.*)$ http://www.newdomain.com/$1 [R=301,L]
</IfModule>

What about old post url to new post url?
to 301 old url to new domain url old domain permalink and new domain permailink structure have to be identical?
like
old. com/best-wifi-routers - new .com/best-wifi-routers/
or can i do like

old .com/best-wifi-router - 301 - new .com/best-budget-wifi-routers/ -- will this work or i need to change this permalink?
if you can 301 this give httaccess code.

And i know you're the founder of serpnames "Sumit bansal"with good auction domains.. Big shout out to you. all bhw members welcomes you...

I contacted you for some niche domains, but not available, so i am waiting...
 
What about old post url to new post url?
to 301 old url to new domain url old domain permalink and new domain permailink structure have to be identical?
like
old. com/best-wifi-routers - new .com/best-wifi-routers/
or can i do like

old .com/best-wifi-router - 301 - new .com/best-budget-wifi-routers/ -- will this work or i need to change this permalink?
if you can 301 this give httaccess code.

And i know you're the founder of serpnames "Sumit bansal"with good auction domains.. Big shout out to you. all bhw members welcomes you...

I contacted you for some niche domains, but not available, so i am waiting...

Buddy the code I shared will help with the 1st option. If you'd like to do 2nd, use below code on the source domain:

##Code
Redirect 301 /old-page/ https://anydomain.com/any-page
##Code


Thanks for the warm welcome :)
 
Dont forget that 301 redirects more often dont have any impact on ranking.
I did 10+ such redirects with some auction domains. Only for 2 websites rankings increased.
 
Back
Top