默认页面
<h3>后端vue伪静态部署</h3>
<pre><code>//解析php文件路由等等
location / {
try_files $uri $uri/ /index.php?$query_string;
}
//访问pc目录指向index文件
location /pc {
try_files $uri $uri/ /pc/index.html;
}
注意:路由是home不是写/home不然无法解析php文件,</code></pre>
<h4>vue资源文件存放位置</h4>
<p><img src="https://www.showdoc.com.cn/server/api/attachment/visitfile/sign/20aab5ec4e4fcb467ad680c46de9e720" alt="" /></p>
<h3>前端vue打包配置</h3>
<h4>打包生成目录配置</h4>
<p><img src="https://www.showdoc.com.cn/server/api/attachment/visitfile/sign/0ba438cc768ffa7785683f13e52206e5" alt="" /></p>
<h4>打包生成路由访问规则配置</h4>
<p><img src="https://www.showdoc.com.cn/server/api/attachment/visitfile/sign/ecca022e8e72315cb60914c0bee3084c" alt="" /></p>