Page 1 of 1

Force www or non-www website URL

Posted: Wed Aug 10, 2022 10:14 am
by isscbta
To force www in your website URL (www.domain.com) at the beginning of your .htaccess file add:

Code: Select all

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
To force non-www in your website URL (domain.com) at the beginning of your .htaccess file add:

Code: Select all

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.
RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]
Just change domain.com to your own website domain

Re: Force www or non-www website URL

Posted: Sun Aug 06, 2023 2:23 pm
by sennevb
Hello,

I have setup following for my website:

mydomain.com

aliases:
www.mydomain.com
media1.mydomain.com
media2.mydomain.com

i used the mod rewrite to rewrite non www to www, but now the media domains are not reachable anymore..
any workaround for this??