[使用Apache Web服务器时,我们在apache2.conf
中拥有
AllowOverride All Allgranted
Nginx Web服务器的替代方法是什么?
因为总是在Laravel中收到消息404
这些是我在Laravel应用中使用的重写规则
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php$ {
try_files $uri /index.php =404;
}