javascript - vue routing using /index.html/home does not work, use /home will work
仅有的幸福
仅有的幸福 2017-05-19 10:34:10
0
1
878

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?

仅有的幸福
仅有的幸福

reply all(1)
小葫芦

Add on nginx

location / {

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

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

Try it

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template