gpt4 book ai didi

php - 将完整的 wordpress 站点转换为 HTTPS

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:41:12 27 4
gpt4 key购买 nike

我正在尝试将一个 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

这是我试图在 header php 文件中使用以将页面转换为 HTTPS 的 PHP:

if($_SERVER["HTTPS"] != "on")
{
header("Location: https://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]);
exit();
}

最佳答案

您不需要在 .htaccess 或 PHP 中进行全面重定向。转到仪表板 >> 设置并将您的 URL 更改为 https。然后保存永久链接。

您可能想要查找/替换帖子/页面内容、媒体 URL 等中的任何 http URL,这样您就不会获得从 http 到 https 的重定向。尝试 interconnectit.com WordPress Serialized PHP Search Replace Tool

https 正常后,使用Firebug使用 Firefox,或使用 Chrome 中的开发人员工具或 SafariIE查看您是否从任何主题文件中的非 https URL 收到任何“不安全内容”错误。

您可能需要更改 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。

关于php - 将完整的 wordpress 站点转换为 HTTPS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29949752/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com