Google Chrome beta 44 introduce un grave bug che provoca problemi di visualizzazione in molti siti WordPress. Il bug è determinato dall’HTTPS header che assume ora il valore 1. Questo viene letto dalla funzione is_ssl() di WordPress che imposta l’HTTPS a true. Il risultato è quello visibile nello screenshot:

Come risolvere il problema? Per fortuna la soluzione è piuttosto semplice. E’ sufficiente aggiungere le seguenti righe al nostro file .htaccess:

<IfModule mod_headers.c>
RequestHeader unset HTTPS
</IfModule>