我必须从子路径参数重定向到专用页面。这是我客户的特殊要求。
示例:-
http://localhost:4200/math/
http://localhost:4200/science/
在上述URL中,数学和 science 是参数,我必须重定向到相应的页面。
我的问题是,它在localhost(ng serve)中工作正常,但是当我在tomcat服务器中部署时却无法工作,它会引发404错误
示例网址:www.xyz.com/math/ & www.xyz.com/science/
但是当我引入基于#的路由
时,我可以使URL有效 www.xyz.com/#/math/
在tomcat中,有什么方法可以实现www.xyz.com/math/
吗?