I have this ISAPI Rewrite
rule that is working:
RewriteRule ^/signup$ /signup.aspx [I,L]
and I want to redirect the traffic to HTTPS
for this web page.
I tried this rule and other similar rules:
RewriteCond %{HTTPS} off
RewriteRule ^/signup$ https://www.domain.com/signup.aspx [I,L]
and I receive 404 error
message.
I also tried to keep the first rule and create a new one to redirect http://www.domain.com/signup
to https://www.domain.com/signup
but the traffic remains on HTTP.