Apache mod_rewrite Question
I'd like to have a few scripts on my server operate over my SSL without an a href="https://", and I've figured it out. This seems to work for me in httpd.conf
Code:
RewriteCond %{SCRIPT_FILENAME} mysecurepage.php RewriteRule ^/(.*) https://domain.com/$1 [L,R]
Thanks!