404 未找到 nginx/1.15.9(Ubuntu)

404 未找到 nginx/1.15.9(Ubuntu)

我正在运行一个 PHP 网站,其中所有子页面都显示 404 Not Found nginx/1.15.9 (Ubuntu) 但主页和管理面板 {example.com/admin} 运行正常。我正在运行在 Nginx 服务器上运行的 Php 网站 -

这是我的默认 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/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 (My IP Pasted here);
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.php$is_args$args;
}
# pass PHP scripts to FastCGI server
#
location ~ \.php$ {
include snippets/fastcgi-php.conf;

# With php-fpm (or other unix sockets):
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
# With php-cgi (or other tcp sockets):
#fastcgi_pass 127.0.0.1:9000;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}}  

并且 Nginx.conf 文件为

user www-data;  
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections 1000;
# multi_accept on;
}
http {

##
# Basic Settings
##

sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;

# server_names_hash_bucket_size 64;
# server_name_in_redirect off;

include /etc/nginx/mime.types;
default_type application/octet-stream;

##
# SSL Settings
##

ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;

##
# Logging Settings
##

access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;

##
# Gzip Settings
##

gzip on;

# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

##
# Virtual Host Configs
##

include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}

主页工作正常但其他页面不工作前端页面显示为

404 Not Found
nginx/1.15.9 (Ubuntu)

我的网站托管在 Digitalocean 上,我只需创建 droplet,然后安装 Nginx、MySql、PHP-FPM 7.2、PhpMyAdmin。然后将 PHP 文件复制到 /var/www/html

PHP 项目在 Xamp 上运行良好,所有页面都运行良好,没有任何错误。我只是在 nginx 服务器上收到错误。请任何人帮忙 -

这是 IP - 134.209.36.248 {URL}

答案1

sudo nano +92 /etc/nginx/sites-enabled/default

添加 } 以使服务器重新启动。

相关内容