WordPress 的 Nginx 设置:面临 301 重定向问题

问题描述 投票:0回答:1

我们计划将我们的 WordPress 网站从 Apache/Httpd 迁移到 Nginx。我认为对我来说的挑战只是在 nginx 配置中添加

.htaccess
代码,但现在每当我启用 nginx 时,我都会从网站获得 301 重定向。

我现在试图保持设置简单,只是为了看到我的主页上线。请找到下面的配置文件。

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 4096;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    include /etc/nginx/conf.d/*.conf;

    server {
        listen       80;
        listen       [::]:80;
        server_name  _;
        root         /var/www/html/;

        include /etc/nginx/default.d/*.conf;

        error_page 404 /404.html;
        location = /404.html {
        }
        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
        }
    }

我目前已从 AWS ALB 设置 SSL 重定向。 这是我的域名:https://nginx.dev.homeloanexperts.net.au/

它可以访问我的健康检查文件,但不能访问主 WordPress 站点 https://nginx.dev.homeloanexperts.net.au/healthcheck.php

问题:WordPress 主站点无法访问,但在使用 Apache/Httpd 时工作正常。错误日志中没有明显的问题。

我的配置中缺少什么?如有任何帮助,我们将不胜感激!

wordpress amazon-web-services apache nginx nginx-config
1个回答
0
投票

您没有设置任何处理 PHP 文件的规则,也没有设置任何文件作为 nginx 配置的索引文件。应该是index.php ...并且 try_files 指令可能会有所帮助。

© www.soinside.com 2019 - 2024. All rights reserved.