Php WordPress%postname%permalink返回404

Php WordPress%postname%permalink返回404,php,wordpress,nginx,Php,Wordpress,Nginx,我有一个WordPress博客,它托管在一个名为/blog的子目录中,我正试图使用%postname%字符串创建漂亮的永久链接,但它所做的只是返回一个404错误 我已经尝试了很多解决方案来解决这个问题,但都没有成功。我是错过了什么,还是有更好的方法?在这一点上,我唯一能想到的是权限问题,但这不太可能 我的NGINX配置文件如下: server { listen 80 default_server; listen [::]:80 default_server;

我有一个WordPress博客,它托管在一个名为
/blog
的子目录中,我正试图使用
%postname%
字符串创建漂亮的永久链接,但它所做的只是返回一个404错误

我已经尝试了很多解决方案来解决这个问题,但都没有成功。我是错过了什么,还是有更好的方法?在这一点上,我唯一能想到的是权限问题,但这不太可能

我的NGINX配置文件如下:

server {
        listen 80 default_server;
        listen [::]:80 default_server;

        # SSL configuration
        #
        # listen 443 ssl default_server;
        # listen [::]:443 ssl default_server;
        #
        # Note: You should disable gzip for SSL traffic.
        # See: https://bugs.debian.org/773332
        #
        # Read up on ssl_ciphers to ensure a secure configuration.
        # See: https://bugs.debian.org/765782
        #
        # Self signed certs generated by the ssl-cert package
        # Don't use them in a production server!
        #
        # include snippets/snakeoil.conf;

        root /var/www/allamericangold.com/html/blog;

        # Add index.php to the list if you are using PHP
        index index.php index.html index.htm index.nginx-debian.html;

server_name allamericangold.com www.allamericangold.com 104.198.9.91;

        location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to displaying a 404.
                #try_files $uri $uri/ =404;
                try_files $uri $uri/ /index.php$args;
        }

        location /blog/ {

                try_files $uri $uri/ /blog/index.php$is_args$args;
}
        location ~ \.php$ {
                      include snippets/fastcgi-php.conf;

                # With php7.0-cgi alone:

                # With php7.0-fpm:
                fastcgi_pass unix:/run/php/php7.0-fpm.sock;
        }
}

添加
index index.php index.html index.htm内部
位置/blog/

location /blog/ {
     index  index.php index.html index.htm;
     try_files $uri $uri/ /blog/index.php$is_args$args;
}

添加
index index.php index.html index.htm内部
位置/blog/

location /blog/ {
     index  index.php index.html index.htm;
     try_files $uri $uri/ /blog/index.php$is_args$args;
}

请跟那个走。愿这个能帮助你。请跟那个走。愿这个能帮助你。