簡體   English   中英

WordPress%postname%permalink返回404

[英]WordPress %postname% permalink returns 404

我有一個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; 內部location /blog/塊。

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM