Hi, I've been using the Google PageSpeed Module and have created a .htaccess file to optimize my website (www.anetoi.com). I tried using combine_css to merge my CSS files but it didn't work as expected. I followed Google's instructions but something seems off with my .htaccess settings. I'm not sure what I'm doing wrong. Can anyone provide me with a sample default .htaccess file or suggest alternative methods to effectively combine all my CSS files into one? I'm really stuck on this issue, any help would be greatly appreciated. Thank you. Google's example shows that you can combine multiple CSS files into one, like this:
If you have four CSS styling files on your page:
<link rel="stylesheet" type="text/css" href="styles/yellow.css+blue.css+big.css+bold.css.pagespeed.cc.xo4He3_gYf.css">
Here is the code snippet I have so far...
<IfModule pagespeed_module>
ModPageSpeed on
ModPagespeedRewriteLevel PassThrough
ModPagespeedEnableFilters combine_css,extend_cache,rewrite_images
ModPagespeedEnableFilters rewrite_css,rewrite_javascript
</IfModule>