我在https页面上有一个指向HTTP页面的iFrame。结果是, 新的HTTP页面不会显示iFrame。我希望从https中排除保存iframe的页面,以便iFrame显示。
我目前将http重定向到https的.htaccess文件如下:
RewriteEngine On
RewriteBase /
RewriteCond %{ENV:HTTPS} !=on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
由于