评论

收藏

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

网络安全 网络安全 发布于:2021-07-06 14:12 | 阅读数:429 | 评论:0

  解决这类问题 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;
  

  
关注下面的标签,发现更多相似文章