Hi
My old website is containing hashbangs. My new website doesn’t have hashbangs.
So is there any way to use a pattern that would match the hashbangs ?
My Old Url structure is like this :
My new Url strucure is like this :
somedomain.com
somedomain.com
So far i have tried all this combinations in my netlify toml file.
[[redirects]]
from = "/#!/*"
to = "/:splat"
status = 301
force = true
[[redirects]]
from = "/:slug/*"
to = "/:splat"
status = 301
force = true
None of which is working. Is there any what to circumvent this issues ?
And help would be highly appriciated.
Thanks