[Solved] Error Configure Cache on cPanel Pre Virtual Host Include
Hi,
i want to use LS Cache on cPanel server so i follow instruction in page
http://www.litespeedtech.com/support...ead.php?t=4719
I put this code (instruction no.5) to my "Pre Virtual Host Include"
[CODE]RewriteEngine On
RewriteEngine On
## cache should be available for HEAD or GET requests
RewriteCond %{REQUEST_METHOD} ^HEAD|GET$
## select which pages to cache
RewriteCond %{HTTP_COOKIE} page_contain_cachetoken=yes
##with other condition
RewriteCond %{QUERY_STRING} !s=[a-fA-F0-9]{32}
##excluding certain URLs
RewriteCond %{REQUEST_URI} !/(login|register|usercp|private|profile|cron|image) \.php$
##cache for 2 mins for php pages only
RewriteRule /(.*\.php)?$
Last edited by skyknight; 08-20-2012 at 10:21 AM..
|