使用 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;

相关内容