how disable this header ? googled ,no reply; X-Mod-Pagespeed: 0.9.14.6-358
I attempt: RequestHeader unset X-Mod-Pagespeed
It's does nothing
|
feedback
|
|
It's generated because mod_pagespeed for apache is installed and enabled in your apache server. On ubuntu/debian you can disable it easily by doing:
You can check the exact name of the module launching a2dismod without argument. The other way is to go to your apache config folder and remove the pagespeed symlink in mods-enabled. Don't forget to restart apache through " | |||||
feedback
|
|
You'll need to edit the source code for mod_pagespeed and recompile - look for a line starting with something like.....
| |||
|
feedback
|
|
It's a response header, not a request header -- so just use Header unset not RequestHeader. | |||
|
feedback
|