美文网首页
路由使用history模式配置

路由使用history模式配置

作者: sunowter | 来源:发表于2022-02-22 12:52 被阅读0次

域名例如: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;

        }

相关文章

网友评论

      本文标题:路由使用history模式配置

      本文链接:https://www.haomeiwen.com/subject/ralglrtx.html