Speed issue of google, speeding up page rendering

https://developers.google.com/speed/docs/insights/EnableCompression

https://htmlcompressor.com/compressor/
for speeding up
http://www.inmotionhosting.com/support/website/what-is/how-to-enable-gzip-moddeflate
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript
</IfModule>
<FilesMatch “\.(jpg|jpeg|png|gif|swf|css|ttf|js)$”>
Header set Cache-Control “max-age=604800, public”
</FilesMatch>
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript
</IfModule>

.htaccess not forwarding query string

There was some isssue in gur’s novum projects and what we found that our .htaccess files is not forwarding query string to other pages and finally found a statement in .htaccess can help doing the same. We can use the following statement to do so.

Options -MultiViews

And can be used like this

Options -MultiViews
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteRule ^.*$ pahli.php [L]