Disable ssl for a single page with htaccess
-
Hi!
I need to include on a https webpage an iFrame who does not have an https version
So I would like to disable the ssl and use the http version of a single page of the web.
I read that I can do that through the htaccess file, could you help me with that?
What should I add to redirect the page
https://mysite.com/libera-tu-movil/
to
https://mysite.com/libera-tu-movil/
?Thanks!!!!
This is the content of my htaccess
# BEGIN rlrssslReallySimpleSSL rsssl_version[2.2.15]
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>
# END rlrssslReallySimpleSSL
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
- The topic ‘Disable ssl for a single page with htaccess’ is closed to new replies.