i have a situation which returns a
"not cached. Reason: query string present but no explicit expiration time"
this is a php script and i want to cache the result anyhow.

my config file reads like:

<IfModule mod_headers.c>
        Header set Expires 62222222222222
</IfModule>

<IfModule mod_expires.c>
        ExpiresActive On
        ExpiresDefault "access plus 10 days"
</IfModule>

<IfModule mod_proxy.c>
        ProxyRequests On
        <Proxy *>        
                Order deny,allow        
                Deny from all        
                Allow from localhost
        </Proxy>
</IfModule>

<IfModule mod_disk_cache.c>
        CacheEnable disk /
        CacheRoot "c:/temp/cache/"
        CacheMaxExpire 864000
        CacheDefaultExpire 864000
        CacheIgnoreNoLastMod On
        CacheStoreNoStore On
        CacheStorePrivate On
        CacheIgnoreCacheControl On
        CacheLastModifiedFactor 864000000000
</IfModule>


am i doing something wrong or do i need to do something extra to cache in
such situations.

Thanks,
Anshul
-- 
View this message in context: 
http://www.nabble.com/Over-ride-the-not-caching-behaviour-for-no-explicit-expiration-tp18329432p18329432.html
Sent from the Apache HTTP Server - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to