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

posted @ 2019-01-28 22:08  liulonglong  阅读(335)  评论(0编辑  收藏  举报