Hello, I forwarded all www to non www using the code below: RewriteEngine On RewriteCond %{HTTP_HOST} !^mywebsite\.com$ RewriteRule (.*) http://mywebsite.com/$1 [R=301,L] Code (markup): I want to make sure i made the right redirect so I can still get some links juice from www. is this redirect is good? Thanks