Add _redirects file to root path for Vue SPA hosted on Netlify

后端 未结 5 857
难免孤独
难免孤独 2021-01-31 05:28

I\'m developing a Single Page App using Vue CLI and want history pushstate to work so I get clean URLs.

I have to follow this: https://www.netlify.com/docs/redirects/#hi

5条回答
  •  隐瞒了意图╮
    2021-01-31 06:05

    I've tried Rutger Willems's snippet without the last line and it works. Credit goes to Hamish Moffatt.

    [[redirects]]
      from = "/*"
      to = "/index.html"
      status = 200
    

提交回复
热议问题