wordpress - HTTPS header issue with Chrome version 44.0.2403.xx -
i have been struggling since have installed new chrome version 44.0.2403.xx.
my initial issue stylesheet on website load on https, website http.
i use wordpress, have searched inside core function find https added url.
the culprit is_ssl()
function. wordpress base https verification on $_server['https']
variable, , mine set 1.
i found out last google chrome version sending header https = 1
.
how can prevent header cause problems website?
to solve issue have enabled mod_header
on server , added rule appache2.conf
file:
<ifmodule mod_headers.c> requestheader unset https </ifmodule>
Comments
Post a Comment