我已经写了一套规则来重定向
http://server.com/application/c/<UserIdValue>
网址的类型
http://localserver.com/application/?userid=<UserIdValue>
我在 apache httpd.conf 中写了以下规则
<Location /application>
ProxyPassReverse http://server.com/application/
RewriteEngine On
RewriteCond %{REQUEST_URI} /c/ [NC]
RewriteRule application/c/(.*)$ http://localserver.com/application/?userid=$1 [QSA,P]
有了这个我可以访问我的应用程序中的登录页面和其他页面,但是当我尝试在应用程序中登录/注销时,它会进入“本地服务器”位置。
问题出在 spring securityj_spring_security_check, j_spring_security_logout
上。我不知道该怎么做。
Spring 安全性优先于代理通行证!!!!!!