vue history模式怎样去掉URL中的#号

中所周知,在history下,URL中都会自动添加#号,为了使网址更加美观,都会要求去掉#号。下面来说一说怎样去掉#号。

首先确保router.js 中mode:’history’。

其次要确定静态文件是放在主域名下还是二级域名下
比如网址为www.baidu/home 即为主域名,此时我们将打包的静态文件放在此域名的根目录下时只需在nginx文件中添加

location / {
                // 此行在这个最下面            
                if (!-e $request_filename) {
                        rewrite ^/(.*) /index.html last;
                        break;
                }
        }

若为二级域名(www.baidu/test/home)则我们需要修改两个位置
1.router.js文件中mode下面添加

base:”test"

2.nginx

location /test/ {
                // 此行在这个最下面            
             if (!-e $request_filename) {
                rewrite ^/(.*) /test/index.html last;
                break;
            }
        }

你可能感兴趣的:(知识分享,vue.js)