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