How do I force SSL for some URLs and force non-SSL for all others?
- by brad
I'd like to ensure that certain URLs on my site are always accessed via HTTPS while all other URLs are accessed via HTTP.
I can get either case working in my .htaccess file, however if I enable both, then I get infinite redirects.
My .htaccess file is:
<IfModule mod_expires.c>
# turn off the module for this directory
ExpiresActive off…