Redirecting www URLs to non-www is important for a consistent URL structure and better SEO. Follow these steps to set it up.
Step 1: Access the .htaccess
File
Find the .htaccess
file in your website’s root directory. If it’s not visible, enable hidden files or create a new one.
Step 2: Add This Code
For HTTP websites, add this code to your .htaccess
file:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [L,R=301]
For HTTPS websites, use this:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [L,R=301]
Step 3: Save and Test
- Save the file.
- Clear your browser cache.
- Visit a www URL (e.g.,
www.example.com
) and check if it redirects toexample.com
.
That’s it! You’ve successfully redirected www to non-www.