您好我正在运行WP安装并烦恼地在一个并不真正需要https的页面上我必须从另一个站点请求http图像(我不拥有)并且图像更新每隔1小时我就不能复制并粘贴它们,我已经查看了复制/保存它们,代理等等。
我需要一个页面才能拥有http,无论这两个选项是否正常工作,所以我不妨强迫我需要有一个http页面,所以我的问题是..如果你们还在关注我! ha ..与下面的.htaccess
如何为我的网站的主页/索引添加例外,以https://mysite.co.nz
到http://mysite.co.nz
(和https://www
等。)
# Test Force ssl
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://mysite.co.nz/$1 [R,L]
任何帮助都会超越惊人
答案 0 :(得分:1)
尝试以下两条规则:
RewriteEngine On
RewriteCond %{SERVER_PORT} =443
RewriteRule ^/?$ http://%{HTTP_HOST}%{REQUEST_URI} [R,L]
RewriteCond %{SERVER_PORT} =80
RewriteRule . https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
答案 1 :(得分:0)
检查一下 - htaccess redirect to ssl only for certain pages and www non secure for the other pages
# Remove SSL on other pages
RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} !checkout|login|my-account|administrator|webshop
RewriteCond %{HTTP_HOST} ^(www\.)?(.*)$ [NC]
RewriteRule ^(.*)$ http://www.%2/$1 [R=301,L,QSA]