Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Redirect http to https and also disable http

LalitkMar 20 2009 — edited Mar 25 2009
How 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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 22 2009
Added on Mar 20 2009
42 comments
4,792 views