Es wird jeweils ein Frontend für HTTP und eins für HTTPS benötigt.Bedingungen:Name EinstellungenConnection_is_http -> SSL/TLS connection established und negiert!Connection_is_https -> SSL/TLS connection establishedHost_is_abc_xyz_com -> Host matches abc.xyz.comPath_is_user -> Path matches /userRegeln:1. Wenn Connection_is_http -> https redirect Notiz: So wird alles was per http ankommt auf https weitergeleitet.2. Wenn Connection_is_https und Host_is_abc_xyz_com und Path_is_user -> "http-request redirect" mit den argumenten: "location https://abc.xyz.com/1/2/3.html code 301"Notiz: Wenn jemand auf abc.xyz.com/user zugreift kommt als Antwort, dass der Inhalt dauerhaft (301) verschoben wurde auf https://abc.xyz.com/1/2/3.htmlRegel Nummer 1 weißt man dann dem HTTP Frontend zu. Regel 2 dem HTTPS Frontend