リダイレクトする一連のルールを作成しました
http://server.com/application/c/<UserIdValue>
宛先の URL のタイプ
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]
これにより、アプリケーションのログインページや他のページにアクセスできますが、アプリケーションでログイン/ログアウトしようとすると、「localserver」の場所に侵入します。
問題は春のセキュリティにありj_spring_security_check, j_spring_security_logout
ます。私はこれのために何をすべきか分かりません。
Spring セキュリティはプロキシ パスよりも優先されます!!!!!