I have two virtual hosts in httpd.conf, one for port 443 and one for port 80:
<VirtualHost IPADDRESS:80> </VirtualHost> <VirtualHost IPADDRESS:443> </VirtualHost>
Now I want to redirect each request to my server to go to https://www.mysite.com/
, with the exception of http://www.mysite.com/blog/
. I want the blog not to be SSL. Where should I put RewriteRules, in which virtualHost directive? And what rule do I need for this?
source share