系统相关
首页 > 系统相关> > nginx服务器配置

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;
}

标签:配置文件,配置,uri,nginx,跳转,服务器,页面
来源: https://www.cnblogs.com/xzhxzhxzhfirst/p/16561194.html