服务器:腾讯云的香港服务器,系统是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;
最后查了一下nginx的日志,之前一直在
error.log
里看有没有错误信息,后来想着要不在access.log
里瞅一下,然后就发现了下边的十六进制的信息,最后有个400的错误码后来一看,是请求的方式不对,应该是
http://ip:端口
,我整成https://ip:端口了