vue部署在nginx后刷新404,nginx.conf一行代碼解決掉
直(zhi)接 vim conf/nginx.conf文(wen)件(jian)
server {
listen 8081;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /home/www;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
然后esc 退出 wq! 進(jin)行保存
關閉(bi) ..../nginx -s stop
重啟(qi) .../nginx