Report this

What is the reason for this report?

mod_rewrite not working fully?

Posted on January 15, 2015

So I am using the following

<VirtualHost :80> RewriteEngine on ReWriteCond %{SERVER_PORT} !^443$ RewriteRule ^/(.) https://%{HTTP_HOST}/$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?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

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.

Just to add, I have tried the following and it seems to work on IE. but not Chrome. <VirtualHost :80> RewriteEngine on RewriteCond %{HTTPHOST} !^domain.com$ [NC] ReWriteCond %{SERVERPORT} !^443$ RewriteRule ^/(.) https://%{HTTP_HOST}/$1 [NC,R,L] </VirtualHost>

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.