Tuesday, January 9, 2018

mod rewrite - Adding an exception to https redirect (mod_rewrite)

I am using the the following script to redirect all requests send to http to https



RewriteEngine On



RewriteCond %{HTTPS} off



RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}



I need to add an exception to this rule (for a specific page) for the reason that it's loading a js that it's on a server that does not have https. In FF, Chrome, it works. In IE it displays a nasty warning.




Any ideas on how to add a rule to my existing mod_rewrite code?

No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...