And so you decide to change the domain name to a more beautiful, or you have had a third-level domain and you want to create a second-level domain, the general does not matter for what reason, it is important to own a domain and change the process to try to move to the next with minimal losses. Now before us is to pass a new domain TIC and PR. Can perform this in two steps.
1. Transfer TIC:
You will need to do both domain synonymous, that is, you will need to add your new domain hosting on the same as the old domain and configure it to Konev folder of your old domain. And in the file robots.txt need to prescribe lines:
1 2 |
User-agent: Yandex Host: www.noviydomens.com |
Or if you do not have such an opportunity then you need to leave the site at the old domain and make a copy of it on your new domain. And then on both domains in the robots.txt file prescribed above stroki.Posle need to wait until Yandex perform gluing sites, approximately 1.5-2 months spent on gluing.
2. Now we will transfer PR.
To make the transfer of PR of the old domain to the new need to make a 301 redirect from the old domain to the new one. Make a 301 redirect in several ways for example through the control panel on the hosting, or you can manually register in the file .htaccess of the old domain.
And so in the .htaccess file is required to prescribe:
1 |
RewrΡteEngΡne On |
Then do the following points:
Option One:
1 2 3 |
RewriteCond %{HTTP_HOST} ^old.ru$ [OR] RewriteCond %{HTTP_HOST} ^www.old.org.ru$ RewriteRule ^.*$ "http://news.ru/" [R=301,L] |
where old.ru - old domain
and news.ru - a new domain
And the second option:
1 2 3 4 |
RewriteCond %{HTTP_HOST} ^news.ru$ [NC] RewriteRule ^(.*)$ http://www.news.ru/$1 [R=301,L] RewriteCond %{QUERY_STRING} .+ RewriteRule ^/*$ http://%{HTTP_HOST}/? [R=301] |
Β And the last third option:
1 2 |
RewrΡteCond %{HTTP_HOST} !www.news.com$ RewrΡteRule (.*)$ http://www.news.com/$1 [NC,R=301,L] |
Β Transferring PR occurs in about 2-3 months after creating a 301 redirect.
No Comment
You can post first response comment.