我需要基本网址为的网络应用程序
https://example.com/mojjo-test/index.html#/
我更新了颤振网站中记录的基本网址: https ://flutter.dev/docs/development/ui/navigation/url-strategies
<base href="/mojjo-test/">
在 index.html 中
根据颤振文档散列已启用
观察:
1.Flutter web app加载,加载时显示url,
http://example.com/mojjo-test/index.html
2.几秒钟后它重定向到
http://example.com/mojjo-test/#/
- 现在,如果我们进行刷新,浏览器将尝试加载
http://example.com/mojjo-test/#/
并显示拒绝访问
我假设http://example.com/mojjo-test/#/
它应该重定向到,而不是重定向到http://example.com/mojjo-test/index.html#/
请提供有关如何实现它的建议。我想保留初始路径https://example.com/mojjo-test/index.html#/
(使用 index.html)