search

Home  >  Q&A  >  body text

javascript - vue routing using /index.html/home does not work, use /home will work

The files I packaged after npm run build are placed under the nginx server. They can be accessed using localhost, but cannot be accessed using localhost/index.html. Please help. What is the problem?

仅有的幸福仅有的幸福2835 days ago883

reply all(1)I'll reply

  • 高洛峰

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

    Add on nginx

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

    Try it

    reply
    0
  • Cancelreply