唐伯虎 发表于 2021-7-6 14:12:05

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

  解决这类问题 nginx配置需要在nginx/conf/nginx.conf中的server中
      location / {
          root   D:/mulu;
          indexindex.html index.htm index.php;
          try_files $uri $uri/ /index.php?$query_string;
      }
      加上   try_files $uri $uri/ /index.php?$query_string;
  

  
文档来源:51CTO技术博客https://blog.51cto.com/u_15294355/2988594
页: [1]
查看完整版本: laravel配置路由后,除了首页,其他页面404