安装完 wnmp 环境以后,我又安装了一些其他组件:vue、vue-router。。。
但是我发现项目死活访问不了其他路径,只能访问根目录
![](https://img.haomeiwen.com/i11673214/9539b5602d128c8d.png)
最后找到原因,不是项目的问题,而是 Nginx 服务器配置的问题
![](https://img.haomeiwen.com/i11673214/e740080cad0b5998.png)
加上这个就好了
try_files $uri $uri/ /index.php?$query_string;
if (!-e $request_filename){
rewrite ^/(.*) /index.php last;
}
网友评论