nginx服务器配置


当通过网页中vue-router跳转页面的时候可以正常显示;而通过浏览器输入地址访问时nginx自然找不到这些页面了。解决办法就是在服务器nignx的配置文件中修改:

location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.html;
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/279580.html

(0)
上一篇 2022年8月8日
下一篇 2022年8月8日

相关推荐

发表回复

登录后才能评论