mod_rewrite ssl redirect
- by Thomas
Hi all,
I want to use mod_rewrite to ensure that certain pages are served with SSL and all others normally, but I am having trouble getting it to work
This works (redirect to SSL when request uri is for users or cart)
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} users [OR]
RewriteCond %{REQUEST_URI} cart
RewriteRule ^(.*)$…