How to force www or non-www using htaccess (Joomla or WordPress)

Insert below code at your .htaccess file and save.

non-www re-direct to www

#Force www:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301,NC]

www re-direct to non-www

#Force non-www:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]

Copyright © 2024 Siam Naulak.
magnifiercrossmenu