我需要在嵌入式tomcat 9.0.43中编写重写规则的帮助。我想提出以下两项要求-http://localhost:8080/tester 及http://localhost:8080/tester/ 转寄http://localhost:8080/login. 这是行不通的,我无法找出问题所在,任何帮助都将不胜感激。
下面是代码
Context context = tomcat.addWebapp("tester", war.getAbsolutePath());
RewriteValve rewriteValve = new RewriteValve();
context.getPipeline().addValve(rewriteValve);
String config = "RewriteRule ^(/)$ /login [R, L]";
rewriteValve.setConfiguration(config);
请帮忙!
暂无答案!
目前还没有任何答案,快来回答吧!