How to Redirect www to Non-www URLs Using .htaccess?

.htaccess

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

  1. Save the file.
  2. Clear your browser cache.
  3. Visit a www URL (e.g., www.example.com) and check if it redirects to example.com.

That’s it! You’ve successfully redirected www to non-www.