I have a PHP script that scraps a page and rewrites it in a different way with a different layout etc.
On the top of the PHP generated page I have a serie of <link rel=stylesheet href=*.css>
.
I've updated my server yesterday and today I've noticed that mod_pagespeed is messing up with these links.
I get:
<link href="http://example.com/A.mycss1.css+css,,_v3,,_style.css,,qv==2+css,,_v3,,_typography.css,,qv==1+css,,_v3,,_responsive.css,Mcc.i_KwDiEdXd.css.pagespeed.cf.ybNw-Cca4d.css" rel="stylesheet">
And obviously it breaks the entire page layout.
I've tired disabling mod_pagespeed within .htaccess
:
ModPagespeed off
But the result is the same. How can I fix it?
Atm I've disabled it globally but I'd like to understand how to fix the problem.