搜尋

首頁  >  問答  >  主體

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

我npm run build之後打包的檔案放在nginx伺服器下,用localhost可以訪問,用localhost/index.html就無法訪問,求助這是什麼問題啊

仅有的幸福仅有的幸福2835 天前887

全部回覆(1)我來回復

  • 高洛峰

    高洛峰2017-05-19 10:36:10

    在nginx上加上

    location / {
    
            #这个地方指定被访问的文件夹位置
    
                root   /data/test;
                index  index.html index.htm;
            }

    試試看

    回覆
    0
  • 取消回覆