gpt4 book ai didi

php - WordPress https 重定向循环

转载 作者:太空宇宙 更新时间:2023-11-03 12:51:17 26 4
gpt4 key购买 nike

我尝试使用 SSL 将 WordPress 博客设置到域中的子文件夹,但没有成功。如果博客 .htaccess 设置为将所有 HTTP 重定向到 HTTPS,则会导致重定向循环。如果 .htaccess 未设置为将所有 HTTP 重定向到 HTTPS,则博客无法正确显示,因为浏览器正在阻止所有 HTTP 请求,因为正在使用 SSL,在这种情况下 wp 登录也会失败。

Details:
- Fresh WordPress installation
- Domain is using SSL
- WP installed on subfolder example.com/blog/
- HTTPS set to WP's home and site URL in database

这里是博客文件夹.htaccess

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteCond %{SERVER_PORT} !^443$
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>

这里是主域.htaccess:

Options +FollowSymLinks
RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !\..+$
RewriteRule ^(.*)$ http://foobar.example.com/$1 [L,R=301]

这是 http 请求的 apache 配置:/etc/apache2/sites-available/000-default.conf

<VirtualHost *:80>
ServerName example.com
ServerAlias *.example.com
ServerSignature Off
RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [NE,R,L]
</VirtualHost>

非常感谢任何帮助和想法来检查什么。

更新:我在 WP 数据库中手动将所有 HTTP URL 替换为 HTTPS,唯一出现的是示例页面和帖子 URL,但这无助于解决问题。

最佳答案

我能够通过添加 $_SERVER['HTTPS']='on' 来解决问题;进入 wp-config.php。我不知道为什么 $_SERVER['HTTPS'] 没有被系统正确设置,但我猜它在某种程度上与 Apache/SSL 配置有关。

没有设置 $_SERVER['HTTPS']='on' WP 无法检测到 HTTPS 并且正在通过 HTTP 加载内容,而 .htaccess 重定向导致重定向循环。

关于php - WordPress https 重定向循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31533663/

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