问题
I'm working on a site which I havent coded from scratch and in firebug the css files are being displayed as: style.css.pagespeed.ce.5d2Z68nynm.css with the pagespeed extension. Can anyone tell me what's doing this as I can't find it. I'm guessing mod-pagespeed possibly running on server? I want to turn it off for now because it's caching my css and stopping updates which is really annoying to develop with.
Thanks in advance.
回答1:
According to http://code.google.com/speed/page-speed/docs/using_mod.html#htaccess
you can turn off the module with the line ModPagespeed off
in a .htaccess file.
The best solution would be to have a non-live development environment that didn't have mod_pagespeed on at all, or where it could be added only for some final testing.
回答2:
Alister is right. There are other two ways I know to do this. With a .htaccess shared through many domains and you want to disable PageSpeed only on a single domain, you can add to the bottom of the .htaccess file:
<IfModule pagespeed_module>
...
ModPagespeedDisallow http://www.example.com/*
</IfModule>
It means that you can have two domains, one for the developement (ModPagespeedDisallow) and one with ModPagespeed active. Never tried but should it works, avoiding visitor getting a not optimized page during development.
Or you can add ?ModPagespeed=off to the url as stated on mod_pagespeed FAQ.
回答3:
Another option for resetting the cache is described here:
Find out where is the cache folder, it's defined in the config file under ModPagespeedFileCachePath property.
Then run the following command from shell:
touch <path_to_pagespeed_cache>/cache.flush
(In my case: touch /var/cache/mod_pagespeed/cache.flush)
That's it. The cache was reset.
回答4:
To disable complete module, try to have the following code in your .htaccess file
<IfModule pagespeed_module>
ModPagespeed off
</IfModule>
回答5:
To make mod_pagespeed reflect changes to assets immediately, you can configure LoadFromFile: https://developers.google.com/speed/pagespeed/module/domains#ModPagespeedLoadFromFile
This will not work for css/js/images served from virtual handlers, but any changes to static content will be re-optimized immediately. In addition to that, optimization itself will usually be finished a lot faster because loading assets from disk is cheaper then fetching them from http(s).
回答6:
Another thing you can do is leave *mod_pagespeed* out of your ssl.conf file. This way, you can access your site via https for development.
Kind of a hack, I know, but it's handy in some cases where you need to make very quick changes.
回答7:
GoDaddy Cloud Bitnami Config
/stack/apache2/conf/nano pagespeed.conf
Turn Off
回答8:
If you're using a W3C Total Cache plugin on WordPress you can try that to deactivate and view the file via inspect mode and always clear cache for the changes.
回答9:
Just as an aside, on this old post, I wrote a PHP script to delete the contents of the pagespeed cache folders (which I placed within the var/www/html area) and added a button to the Magento admin cache control page to call it. This way, whenever the Magento cache needs clearing I can also hit the button to clear the pagespeed cache. The script can be IP and admin restricted. This saves a lot of messing about. You could use a recursive delete folder function like this (careful with your paths!! :) ):
function fullDeleteFolder($dir) {
echo "Remove: ".$dir."<br>";
if (is_dir($dir)) {
$objects = scandir($dir);
foreach ($objects as $object) {
if ($object != "." && $object != "..") {
if (is_dir($dir."/".$object)){
fullDeleteFolder($dir."/".$object);
}else{
unlink($dir."/".$object);
}
}
}
rmdir($dir);
}
}
$location = "[some-location]/mpcache/mod_pagespeed";
fullDeleteFolder($location);
//might also want to do this for the 'media/css_secure' folder too, if your site is on https
echo "Finished.";
来源:https://stackoverflow.com/questions/4997217/pagespeed-caching-css-annoying-to-develop