域名例如:www.hh.com/test/
1尤莺、const router = new VueRouter({
? mode: "history",
? base: test,
});
?2旅敷、vue.config中
?publicPath: test
3、nginx:
location / {
? ? ? ? ? ? alias? /root_path/
? ? ? ? ? ? index index.html index.htm;
? ? ? ? ? ? try_files $uri $uri/ @router;
? ? ? ? ? ? ? ? }
? ? ? ? location @router{
? ? ? ? ? ? ? ? rewrite ^(.+)$ test/index.html last;
? ? ? ? }