Hi All
I have configured OHS to run on SSL. Everything works fine and as expected. Now I want to make sure that when client enters http://<servername>/workspace it should get automatically redirected to https://<servername>/workspace.
I don't have any loadbalancer configured.
I tried to edit epm_rewrite_rules.conf by adding
RewriteCond %{HTTP_HOST} ^http://planprod/workspace
RewriteRule ^(.*)$ https://planprod/workspace/$1 [R=permanent,L]
Is there anyway I could do this.
I am new to SSL
Thanks