React Router browserHistory not working as expected

前端 未结 4 707
无人共我
无人共我 2020-12-15 09:04

As a User i want to access content via going direkt on an deep url

Situation

On the Main Page i have a link to \"about\" page. clicking on the the Content ch

4条回答
  •  无人及你
    2020-12-15 09:25

    If you're using gulp-server-livereload, just add the fallback property pointing to your index

    gulp.src(['dist'])
      .pipe(livereload({
        livereload: true,
        defaultFile: 'index.html',
        fallback: 'index.html',
        log: 'debug'
      }))
    

提交回复
热议问题