In my Flutter-Web project I need to display my URL without #.
Example: test.com/#/page -> test.com/page
I used html.window.history.pushState(null, "Page", "/page"); for long time and it worked. But things must have had changed and this not results in test.com/page#/page.
I looked into https://github.com/flutter/flutter/issues/3324 but did not find any solution.
Is there any other way to archive this?