If I set a different base in the Astro config file, the pages/index.astro would be served at the base URL (/my_custom_base). When running the dev server, it is possible to navigate to the root of the server domain (/), which only produces an Astro page that says "In your site you have your base path set to /my_custom_base. Do you want to go there instead?"
Is there a way or configuration for this page to automatically redirect to the base URL instead of requiring me to click the link? Maybe some Astro configuration in the config file which would add a <meta http-equiv="refresh"> in this file to automatically redirect. Or simply serve up a page with only the meta tag.
PS: I have tried redirects: { '/': '/my_custom_base' } but this doesn't work at the root URL and it creates a redirect loop at the base URL.