gpt4 book ai didi

php - 使用 apache2 在 nginx 上为 wordpress 重定向太多

转载 作者:行者123 更新时间:2023-12-03 20:10:22 25 4
gpt4 key购买 nike

我刚刚在 ubuntu 14.04 LTS 上安装了 wordpress。 Nginx 充当 apache2 的反向代理。

wp-admin 工作正常,但我无法打开主页。

Nginx 服务器代码:

server {
listen 80;

root /var/www/html/testblog;
index index.php index.html index.htm;

server_name testblog.com;

location / {
# try_files $uri $uri/ =404;
try_files $uri $uri/ /index.php?q=$uri&$args;
}

error_page 404 /404.html;

error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}

location ~ \.php$ {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8182;
}

location ~ /\.ht {
deny all;
}
}

Apache 虚拟主机配置:
<VirtualHost *:8182>
ServerName testblog.com

ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/testblog

ErrorLog ${APACHE_LOG_DIR}/errortest.log
CustomLog ${APACHE_LOG_DIR}/accesstest.log combined
</VirtualHost>

我的/etc/hosts:
127.0.0.1       localhost
127.0.0.1 ubuntu
127.0.1.1 testblog.com

我在文件夹/var/www/html/testblog/中有所有 wp 文件。

testblog.com/wp-admin: working fine.

testblog.com: giving too many redirects.



Here is my settings page:

我想我的设置是正确的。我曾尝试在 wp-config.php 中定义 WP_HOME 和 WP_SITEURL,但没有成功。

我的/var/www/html/testblog/.htaccess:
# 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

testblog.com/wp-admin: working.

testblog.com: giving too many redirects error



任何帮助都受到高度赞赏。

编辑:我已经禁用了所有插件。

最佳答案

如果Apache2运行的是WordPress,则需要配置nginx代理一切。目前你们两个都有 nginx和 Apache2 将 URI 重写为 /index.php ,并且因为 nginx首先,WordPress 永远不会看到原始 URI。

从这个开始:

server {
listen 80;
server_name testblog.com;

location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8182;
}
}

如果您决定允许一些静态 URI 由 nginx 提供服务美好的。但你不能让 nginx将 URI 映射到 /index.php因为那是行不通的。

关于php - 使用 apache2 在 nginx 上为 wordpress 重定向太多,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37725314/

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