除了使用 nginx 的主頁之外,網站頁面無法打開

除了使用 nginx 的主頁之外,網站頁面無法打開

我已經在 nginx 伺服器區塊上建立了一個網站,並且載入正常。但一旦嘗試開啟主頁以外的任何網頁,就會顯示 404 Not Found 訊息。因此,除了主頁之外,其他頁面均不可查看。

這是sites-available文件。

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

        root /var/www/yoalfaaz.com/html;

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

        server_name yoalfaaz.com www.yoalfaaz.com;

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

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #

        location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/run/php/php7.0-fpm.sock;
        }

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

能告訴一下沒有頁面開啟的問題是什麼嗎?我也使用過nginx -t,一切都很成功,而且 error.log 檔案中沒有錯誤。

答案1

location從此更改您的區塊

location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}

對此

location ~ \.php$ {
    include snippets/fastcgi-php.conf;
    fastcgi_pass unix:/run/php/php7.0-fpm.sock;
    fastcgi_index index.php;
    fastcgi_split_path_info ^(.+?\.php)(/.*)$;
    # only uncomment the next line, if not set in fastcgi-php.conf already
    # fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
}

順便說一句:您的頁面上似乎還有另一個問題:檢查文件的連接逾時https://www.yoalfaaz.com/yoimg/yoalfaaz.png

答案2

那些路徑不存在作為檔案系統中的檔案。它們由您的 Web 應用程式處理。但是,您實際上並沒有將它們路由到try_files.相反,您將它們路由到 404 頁面。

                try_files $uri $uri/ =404;

相反,您應該將非靜態文件的請求路由到您的 Web 應用程式。例如:

                try_files $uri $uri/ /index.php$is_args$args;

相關內容