I trying to build an app that allows the user to go to any slug and it will direct them to the index.astro page (excluding already defined pages such as checkout.astro, etc)
domain.com/slug-1 = index.html
domain.com/slug-2 = index.html
domain.com/slug-3 = index.html
domain.com/checkout = checkout.html
domain.com/slug-4 = index.html
I will use the slug to pull the information from the account so I can brand the app. How do I go about fixing the redirect?