服务器:腾讯云的香港服务器,系统是Ubuntu18.04的
项目主要是用PHP框架Laravel写的
问题描述:部署完成之后是可以访问首页的,其它页面不能访问,显示下图信息
nginx配置:
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html/book/public;
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html;
server_name _;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ .php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
}
做过的尝试:
- 添加
try_files $uri $uri/ /index.php?$query_string;