Laravel routes not found after nginx install

前端 未结 6 800
失恋的感觉
失恋的感觉 2020-12-24 02:17

After I changed ICG to nginx all routes except index page does not work.

Laravel Config:

#/etc/nginx/sites-enabled/laravel
server {
    listen 80;

          


        
6条回答
  •  抹茶落季
    2020-12-24 02:55

    When I sent parameters by get I did not recognize them, I just have to activate the following: try_files $uri $uri/ /index.php$is_args$args;

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

提交回复
热议问题