Redirect from www to non-www
Do you want your website to automatically redirect from www to non-www? Add the following code to your htaccess file RewriteEngine OnRewriteCond %{HTTP_HOST} www.yourwebsitehere.comRewriteRule (.*) http://yourwebsitehere.com/$1 [R=301,L] Its done. Your website will now be redirected.