Mobile app version of vmapp.org
Login or Join
Kaufman445

: Enable pagespeed_module in Godaddy’s Deluxe Linux Hosting I try to enable pagespeed_module in Godaddy’s Deluxe Linux Hosting, the entire .htaccess is as below, <IfModule mod_rewrite.c>

@Kaufman445

Posted in: #Htaccess

I try to enable pagespeed_module in Godaddy’s Deluxe Linux Hosting, the entire .htaccess is as below,

<IfModule mod_rewrite.c>
RewriteEngine On

## Forward non www to www
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^www. [NC]
RewriteRule ^ http%{ENV:protossl}://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

## remove the display of .php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^.]+)$ .php [NC,L]
</IfModule>

<IfModule pagespeed_module>
ModPagespeed on
ModPagespeedEnableFilters extend_cache
</IfModule>


I have then curl -D -http://ww.thedomain.com but it only show Server: Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fcgid/2.3.10-dev

What are the correct way to enable pagespeed_module in Godaddy’s Deluxe Linux Hosting ? Or how do I debug the problem ?

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Kaufman445

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme