Vue用nginx开启服务history模式刷新网页不404配置

location / {
            root   html/dist;
            index  index.html index.htm;
            
            #vue的history刷新不404
	        try_files $uri $uri/ /index.html;
           }

在conf文件的nginx.conf里加上注释下面的那句话

你可能感兴趣的:(vue.js,nginx,前端)