vue 路由使用/index.html/home不起作用,用/home就可以

我npm run build之后打包的文件放在nginx服务器下,用localhost可以访问,用localhost/index.html就无法访问,求助这是什么问题啊

阅读 4.3k
1 个回答

在nginx上加上

location / {

        #这个地方指定被访问的文件夹位置

            root   /data/test;
            index  index.html index.htm;
        }

试试看

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题