Is there a configuration in Github Pages that allows you to redirect everything to index.html for a Single Page App?

后端 未结 6 768
甜味超标
甜味超标 2021-01-17 15:28

I\'m trying to post my SPA app that works fine locally but when I push it to Github Pages, the interior pages don\'t register if you navigate to them directly.

For

6条回答
  •  南方客
    南方客 (楼主)
    2021-01-17 16:13

    Created two files 404.md and 404.html

    1. 404.md should have below content:
    ---
    permalink: /404.html
    ---
    
    1. 404.html should have the same content as index.html

    this solved my issue for an Angular app.

提交回复
热议问题