I have an apache web server running legacy application (intranet) that use http (not https). Now with the update to Chrome 135, users are always getting redirected to https. I'm not sure if the culprit here is chrome or apache but before the chrome update it still worked fine.
Chrome dev tools has this to say regarding the request:
Request Method: GET
Status Code: 307 Internal Redirect
Referrer Policy: strict-origin-when-cross-origin
cross-origin-resource-policy: Cross-Origin
location: <redirects to https>
non-authoritative-reason: HSTS
How can I disable HSTS? either on the server or the host?
I already followed below advice:
How to disable HSTS header in Apache 2.4?
But that does not solve the issue.
EDIT:
I think it is a chrome issue indeed. I'm not seeing any http request being sent to apache, only https meaning it seems tobe chrome that triggers the redirect.