我试图将wordpress网站设为HTTPS,但我尝试的所有内容都为我提供了重定向循环。我已经编辑了htaccess,我已经用PHP设置了它,我甚至下载了一个wordpress插件来转换它,但每个方法都给我一个重定向循环错误。我知道有些东西必须将我的https重定向到http,但我不知道是什么。这是我的.htaccess文件,其中没有任何HTTPS设置:
# 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
这就是PHP我试图在头文件php文件中使用以将页面转换为HTTPS:
if($_SERVER["HTTPS"] != "on")
{
header("Location: https://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]);
exit();
}
答案 0 :(得分:3)
您不需要在.htaccess或PHP中进行全面重定向。转到信息中心&gt;&gt;设置并将您的网址更改为https。然后保存永久链接。
您可能希望查找/替换帖子/页面内容,媒体网址等中的任何http网址,因此您无法获取从http到https的重定向。试试interconnectit.com WordPress Serialized PHP Search Replace Tool
https正常运行后,请在Firefox中使用Firebug,或使用Chrome或Safari或IE中的开发者工具查看您是否获得了任何&#34不安全的内容&#34;任何主题文件中非https网址的错误。
您可能需要更改为CSS文件中图像的相对路径,即background-image: url(http://example.com/themes/wp-content/theme/images/image.jpg)
到background-image: url(images/image.jpg)
并且,您可能需要从php主题文件中的绝对路径中删除http
,即将'http://example.com/image.jpg'
更改为'//example.com/image.jpg'
;这将允许您的资源默认为https。
答案 1 :(得分:0)
转到常规设置并将WordPress地址从http更改为https
以下是更多调整https://make.wordpress.org/support/user-manual/web-publishing/https-for-wordpress/
你也可以试试这个插件