将2个文件夹从https重定向到WordPress上的http

时间:2018-08-31 08:47:45

标签: wordpress http https

我的WordPress托管网站位于https中,但是我想删除两个文件夹的https,因为我需要使用iframe在该页面中运行http页面。我尝试在.htacess文件中进行编辑,但没有任何效果。

我也尝试过使用PHP代码,但没有任何效果。

这是我的.htacess文件

<IfModule mod_rewrite.c><br>
RewriteEngine On<br>
RewriteCond %{HTTPS} off<br>
RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]<br>
</IfModule><br>
SetEnv PHPRC /home/mysitename/public_html/php.ini<br>
# BEGIN WordPress<br>
<IfModule mod_rewrite.c><br>
RewriteEngine On<br>
RewriteBase /<br>
RewriteRule ^index\.php$ - [L]<br>
RewriteCond %{REQUEST_FILENAME} !-f<br>
RewriteCond %{REQUEST_FILENAME} !-d<br>
RewriteRule . /index.php [L]<br><br>
</IfModule>

# END WordPress

1 个答案:

答案 0 :(得分:0)

derived