Vue-router sets the root directory to jump to the specified page

router.js sets the mode history, and the root directory is u. Now when you want to visit https://ip/u/, you can automatically jump to the home page https://ip/u/index,. How should I configure ?

mode: "history", // require service support
base: "/u/",
Jun.14,2022

mode: 'history',
base: '/u/',
routes: [
  { path: '/', redirect: '/index' }
]
Menu