Hello, please give me a tip how to redirect all URL's to the same location on new domain. For example, I have 500 HTML pages xhttp://www.olddomain.com/example_01.html xhttp://www.olddomain.com/example_03.html I want to move them like this: xhttp://www.newdomain.com/example_01.html xhttp://www.newdomain.com/example_03.html To keep a PR and SERPs of every page. Thanks in advance.
If two domain names point to the same site, try this .htaccess RewriteEngine on RewriteCond %{HTTP_HOST} !^www\.newdomain\.com$ RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L] Code (markup): Hope this helps