Question
mod_rewrite not working fully?
So I am using the following
<VirtualHost *:80>
RewriteEngine on
ReWriteCond %{SERVERPORT} !^443$
RewriteRule ^/(.*) https://%{HTTPHOST}/$1 [NC,R,L]
</VirtualHost>
<VirtualHost *:443>
etc.....
and it does not redirect all traffic to the appropriate named version, it goes to SSL but not the domain setup.
I am using only domain.com and not www.domain.com so my SSL cert is registered to mydomain.com and not the www version, and it does redirect to the SSL version but not to just the https://domain.com version. open to suggestions please?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×