WordPress%postname%permalink返回404

时间:2017-01-31 22:59:52

标签: php wordpress nginx

我在一个名为/blog的子目录中托管了一个WordPress博客,我试图使用%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;
        }
}

1 个答案:

答案 0 :(得分:0)

index index.php index.html index.htm;区块内添加location /blog/

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