I have redirected some urls but didnt pass the PR yet: Is ok at htacces this ? RewriteRule ^oldurl\.html$ newurl.html [L,R=301] thx
Please note that the PR will take time to 'pass on'. It'll take until the next google spider at least.
Redirect to www: RewriteEngine On RewriteCond %{HTTP_HOST} ^voorbeeld.com [NC] RewriteRule ^(.*)$ http://www.voorbeeld.com/$1 [L,R=301] Redirect to none-www: RewriteEngine On RewriteCond %{HTTP_HOST} ^www.voorbeeld.com [NC] RewriteRule ^(.*)$ http://voorbeeld.com/$1 [L,R=301]