Hi,
What will be rewrite rule for above where SSL Proxy is my OLS as proxy server with SSL and the next server is my webserver without SSL.
What modification required before with force https at OLS layer and OLS <-> Web server ( without SSL communication )?
RewriteCond %{HTTPS} !=on
RewriteRule (.*) https://yourdomain.com/$1 [R=301,L]
RewriteRule ^(.*)$ http://apachehttps/$1 [P,L]
What will be rewrite rule for above where SSL Proxy is my OLS as proxy server with SSL and the next server is my webserver without SSL.
What modification required before with force https at OLS layer and OLS <-> Web server ( without SSL communication )?
RewriteCond %{HTTPS} !=on
RewriteRule (.*) https://yourdomain.com/$1 [R=301,L]
RewriteRule ^(.*)$ http://apachehttps/$1 [P,L]