OS:ubuntu10.10
installed software:
drupal7.22
boost-7.x-1.0-beta2
filecache-7.x-1.0-beta2
my cache dir is:
/var/www/drupal/cache/normal
and my .htaccess some contens is:
# NORMAL
RewriteCond /var/www/drupal/cache/%{ENV:boostpath}/192.168.22.249%{REQUEST_URI}_%{QUERY_STRING}\.html -s
RewriteRule .* cache/%{ENV:boostpath}/192.168.22.249%{REQUEST_URI}_%{QUERY_STRING}\.html [L,T=text/html]
when i request url : 192.168.22.249/
the cache dir (cache/normal/192.168.22.249/) have generate a html file is "_.html"
when i request url: 192.168.22.149/node/11
the cache dir (cache/normal/192.168.22.249/node/) have generate "11_.html"
and all html files have "
and all things looks like good.
but my problem is:
when i view these page by http request and view page html source code
only index page source code have boost tags
the other pages source code have not boost tags.why????
i think these problem casue by .htaccess,but i can't fix it
help me~
thx all~
Comments
Comment #1
Anonymous (not verified) commentedIt is more likely that you have some other module that is either logging you in, or setting one of the conditions that disables boost, like a log in cookie. The .htaccess looks correct and if it serves the index page, it is probably correct for all other pages, quite why you would be using fileCache and boost together is also a little odd since they almost do the same thing except fileCache works for logged in users and is slower. http://groups.drupal.org/node/243748 Posted by ogi on July 23, 2012 at 3:31pm, the creator of fileCache details this.
Comment #1.0
Anonymous (not verified) commented1