laravel配置路由后,除了首页,其他页面404

解决这类问题 nginx配置需要在nginx/conf/nginx.conf中的server中

      location / {
          root   D:/mulu;
          index  index.html index.htm index.php;
          try_files $uri $uri/ /index.php?$query_string;
      }
      加上   try_files $uri $uri/ /index.php?$query_string;

官网链接

https://laravelacademy.org/post/6665.html

猜你喜欢

转载自blog.csdn.net/liuqun0319/article/details/86683492