
01-04-2013, 08:43 PM
|
|
Member
|
|
Join Date: Dec 2012
Posts: 16
|
|
Good News,
Today, i'm got my LS Cache working. Yes, but it's just help a little, maybe need to working more on this. At least this the page load seems fastest than before.
This is my cache rules on .htaccess
Quote:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule /static/ajax.php - [L,E=Cache-Control:max-age=30]
RewriteRule ajax.php - [L,E=Cache-Control:max-age=30]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php?do=/$1
</IfModule>
|
This rules was working to cache PHPFox, at "Home" page , make the "Home" page load faster.
Here some screenshot :
http://cl.ly/image/1i1e1a3n1Z3S
http://cl.ly/image/0m0d0q2f1U2h
http://cl.ly/image/3g2B1j3W011G
I got Cache Hits/Sec : 1.0
Total Cache Hits : 6,545
Total Request : 1,904,511
Seem not fully cached yet on the whole website, but i'm need some help about understanding the rules.
I need help for cache this url
http://www.xxx.net/user/login
Path : /home/xxx/www/module/user
How to exclude this url from LS Cache ?
If, my current is wrong, please let me know. so we can simply it.
Glad to hear from you
Thanks.
|