Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

redirect route '/' to '/home',click browser 'goback' button,something is wrong #180

Closed
zouhangwithsweet opened this issue Apr 20, 2020 · 6 comments
Labels
bug Something isn't working

Comments

@zouhangwithsweet
Copy link

zouhangwithsweet commented Apr 20, 2020

[email protected]
vue-router@^4.0.0-alpha.7

here is my routes

export const router = createRouter({
  history: routerHistory,
  routes: [
    {
      path: '/',
      redirect: '/home',
    },
    {
      path: '/home',
      component: Home,
    },
    {
      path: '/detail',
      component: DetailPage,
    },
  ],
})

i can enter my app on localhost:8080, it can redirect to localhost:8080/home; it works.
But,when i use router.push({ path: '/detail'}) in component Home, it goes to localhost:8080/detail, then, click the click browser 'goback' button, it goes to localhost:8080, it never go to localhost:8080/home

@zouhangwithsweet
Copy link
Author

In [email protected], we can usepath: '*' for 404.html, how can i do the same thing in [email protected]?

@posva
Copy link
Member

posva commented Apr 20, 2020

@posva
Copy link
Member

posva commented Apr 20, 2020

@zouhangwithsweet
Copy link
Author

You can check this demo https://codesandbox.io/s/vue-router-v4-reproduction-qrgzx

routes: [
    { path: '/', redirect: '/home'},
    { path: '/home', component: Home },
    { path: '/foo', component: Foo },
    { path: '/bar', component: Bar },
]

when i enter this app, the url will redirect to /home,then click Foo go to '/foo', then just click the browser's <(goback button),the url just go to /,willnot go to the /home

@posva posva added the bug Something isn't working label Apr 20, 2020
@posva posva closed this as completed in 0586394 Apr 20, 2020
@cumt-robin
Copy link

In [email protected], we can usepath: '*' for 404.html, how can i do the same thing in [email protected]?

I have the same doubt...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants