[Solved] Error Configure Cache on cPanel Pre Virtual Host Include

#1
Hi,

i want to use LS Cache on cPanel server so i follow instruction in page

http://www.litespeedtech.com/support/forum/showthread.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:

webizen

Well-Known Member
#2
there is an extra space between "image)" and "\.php$". seems to be added by vbulletin. it needs to be removed.
%
RewriteCond %{REQUEST_URI} !/(login|register|usercp|private|profile|cron|image) \.php$
It should be like below instead.
RewriteCond %{REQUEST_URI} !/(login|register|usercp|private|profile|cron|image)\.php$
 
Last edited:
Top