- Messages
- 4,565
- Reaction score
- 245
- Points
- 63
The solution to domain name change without affecting the search engine is 301 permanent redirect. It is recommended by google itself.
My case is this
I have a domain olddomain and want to change it to new domain newdomain without affecting search engines. Host is same
Here is the catch
olddomain is primary domain
newdomain is parked domain
now when i give this in .htaccess it is showing that "This page is permanently moved to here"
"here" has the link which is current newdomain page. Means it is redirecting to new domain but it is showing the above statement. So it is going like a loop.
So can somebody resolve this issue please.
My case is this
I have a domain olddomain and want to change it to new domain newdomain without affecting search engines. Host is same
Here is the catch
olddomain is primary domain
newdomain is parked domain
now when i give this in .htaccess it is showing that "This page is permanently moved to here"
"here" has the link which is current newdomain page. Means it is redirecting to new domain but it is showing the above statement. So it is going like a loop.
Code:
RewriteEngine on
RewriteRule ^(.*)$ http://newdomain/$1 [R=301,L]
So can somebody resolve this issue please.