J'essaie d'utiliser Tuckey urlRewriteFilter pour réécrire toutes les URL vers https://, tout en préservant les paramètres de la chaîne de requête qui ont été ajoutés à l'URL. Mon fichier urlrewrite.xml ressemble actuellement à ceci
<urlrewrite use-query-string="true">
<rule>
<note>
The rule means that requests to /test/status/ will be redirected to /rewrite-status
the url will be rewritten.
</note>
<from>/test/status/</from>
<to type="redirect">%{context-path}/rewrite-status</to>
</rule>
<rule match-type="regex">
<condition type="header" operator="notequal" name="X-Forwarded-Proto">^HTTPS$</condition>
<condition type="request-uri" operator="notequal">/station/StationPingServlet</condition>
<condition type="request-uri" operator="notequal">/station/StudioPingServlet</condition>
<from>^.*$</from>
<to type="permanent-redirect" last="true">https://%{server-name}%{request-uri}</to>
</rule>
<outbound-rule>
<note>
The outbound-rule specifies that when response.encodeURL is called (if you are using JSTL c:url)
the url /rewrite-status will be rewritten to /test/status/.
The above rule and this outbound-rule means that end users should never see the
url /rewrite-status only /test/status/ both in thier location bar and in hyperlinks
in your pages.
</note>
<from>/rewrite-status</from>
<to>/test/status/</to>
</outbound-rule>
Je pensais que use-query-string="true" permettrait d'y parvenir, donc
http://server.com/test.jsp?company=3&id=1
sera réécrit en
https://server.com/test.jsp?company=3&id=1
mais cela ne semble pas se produire. Ce qui se passe, c'est que
http://server.com/test.jsp?company=3&id=1
est réécrit comme suit
Est-ce que je fais quelque chose de mal ? Merci pour tout conseil.