Nginx未显示页面laravel

问题描述 投票:0回答:1

[使用Apache Web服务器时,我们在apache2.conf中拥有

AllowOverride All Allgranted

Nginx Web服务器的替代方法是什么?

因为总是在Laravel中收到消息404

laravel nginx apache2
1个回答
0
投票

这些是我在Laravel应用中使用的重写规则

location / {
     try_files $uri $uri/ /index.php$is_args$args;
}

location ~ \.php$ {
   try_files $uri /index.php =404;
}
© www.soinside.com 2019 - 2024. All rights reserved.