在WordPress中将单个页面的HTTPS重定向到HTTP(页面没有.php文件)

时间:2017-02-06 12:47:09

标签: wordpress http redirect https

阅读本主题后: 301 redirect HTTPS to HTTP for a single page 并且没有解决它,因为我的wordpress主题中没有每个页面的.php文件,因为页面保存在数据库中。我的.htaccess文件中有以下代码,将我的网站重定向到https。 所以我希望下面的URL是HTTP而不是HTTPS。 在该网址中,我想使用插件从其他网站加载Flash游戏,如果这有帮助的话。我不是代码专家,所以请帮帮我。

由于

    http://www.example.com/fun-page


   # BEGIN rlrssslReallySimpleSSL rsssl_version[2.4.1]
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [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

0 个答案:

没有答案