gpt4 book ai didi

php - Nginx服务器laravel路由目录404错误

转载 作者:行者123 更新时间:2023-12-02 06:53:13 25 4
gpt4 key购买 nike

最近我在 Nginx 中安装了 Laravel。 Laravel 应用程序主页工作正常但路由页面出现 404 错误。我的 Nginx 配置如下:

server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;

root /var/www/html;
index index.html index.htm index.php;

server_name localhost;

location / {
try_files $uri $uri/ /index.php?$query_string;
#try_files $uri $uri/ =404;
#try_files $uri $uri/ /index.php$is_args$args;
}
error_page 404 /404.html;

error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/html;
}


location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}

当我访问像 localhost/lar/public 这样的 url 时,它工作正常。路由已声明,但当我访问像 localhost/lar/public/test 这样的 URL 时,它会收到 404 错误。

最佳答案

只是将 root 更改为/var/www/html/lar/public,然后路由正常工作

关于php - Nginx服务器laravel路由目录404错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37997272/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com