大家好,感谢您的帮助。我在 localhost:8080/app 的 tomcat 上部署了一个 webapp,可以通过 www.domain.com 访问。嗨,用 apache 中的以下配置来做到这一点
RewriteEngine on
ProxyRequests off
ProxyPreserveHost on
RewriteCond %{REQUEST_URI} !^/backoffice
RewriteRule ^/(.*)$ ajp://localhost:8009/app/$1 [P,L]
现在身份验证过程不起作用,因为 JSESSIONID cookie domani 是“/app/”而不是“/”。有一种方法可以解决这个问题。谢谢 ;)