Redirect http to https and also disable http
 LalitkMar 20 2009 — edited Mar 25 2009
LalitkMar 20 2009 — edited Mar 25 2009How do we do this in 10.1.3 IAS. when user type http://xxxx.xx -> it should go to https://xxxx.xxx
I did this
1.
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{SERVER_NAME}%{REQUEST_URI}
2.
<VirtualHost *.7777>
ServerName calamity
DocumentRoot "/app/OFDASrc/index"
Redirect / https://<xxxxxx.xxxx.xxx>:7778/
</VirtualHost>
but no luck