vue打包之后,在Nginx访问,history模式
2018-09-11 本文已影响10人
夏夏夏夏顿天
将Nginx配置改成下面形式,亲,测可行
server {
listen 80;
server_name localhost;
index index.html;
root /root/dist;
location / {
root /root/dist;
try_files $uri $uri/ /index.html =404;
}
}