Alex Donald
  • Projects
  • Reference
  • About
  • Contact

To www or not to www in Apache

31 December, 2015
Server • Apache
Source: http://dense13.com/blog/2008/02/27/redirecting-non-www-to-www-with-htaccess/

non-www to www using .htaccess

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

www to non-www using .htaccess

RewriteEngine On
RewriteCond %{HTTP_HOST} !^my-domain\.com$ [NC]
RewriteRule ^(.*)$ http://my-domain.com/$1 [R=301,L]
© 2022 Alex Donald · pgp.txt