Redirect one page to http

Oco

New Member
#1
Hi.

I want one page domain.com/live to be excepted from https and to be http

I try different solutions and plugins, but i can't get it to work. With ReallySimpleSSL i have too much redirects, and with this rule there is no effect.

Please help.

Code:
  RewriteCond %{HTTPS} on
  RewriteCond %{REQUEST_URI} ^/live$ [NC]
  RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
 

Pong

Administrator
#2
What's your full .htaccess? you should exclude /live from the rule when redirect http to https.

also need to restart OLS everytime you make changes to your .htaccess.
 
Top