Project

General

Profile

Actions

Bug #427

closed

expire.url broken on second level path

Added by Adam over 19 years ago. Updated about 9 years ago.

Status:
Invalid
Priority:
Normal
Category:
mod_expire
Target version:
-
ASK QUESTIONS IN Forums:

Description

Lets say I have the following setting in lighttpd.conf:

expire.url = ( "/images/" => "access 7 days")

If the images dir is located at http://site.com/images then the expires work correct.

If the images dir is located at http://site.com/templates/images then no expire headers are sent.

I've tried using:

expire.url = ( "/images" => "access 7 days") and
expire.url = ( "images" => "access 7 days")

but that makes no difference.

Actions #1

Updated by Anonymous over 18 years ago

I have exactly the same problem and would love to hear of a solution!

Actions #2

Updated by Anonymous almost 17 years ago

why not change expire.url? expire.url = ( "/templates/images/" => "access 7 days")

-- thushw

Actions #3

Updated by gstrauss about 9 years ago

  • Description updated (diff)
  • Status changed from New to Invalid

https://redmine.lighttpd.net/projects/lighttpd/wiki/docs_modexpire

mod_expire directives match the prefix of the URL, which is why

expire.url = ( "/images/" => "access 7 days" )
matches only those URLs beginning /images/

To match /images/ anywhere in the URL, wrap the directive in a condition using $HTTP["url"] =~ "/images/" which is a regex match:

    $HTTP["url"] =~ "/images/" {
         expire.url = ( "" => "access 7 days" )
    }

Inside the condition, the expire.url prefix of "" matches all URLs and will add the caching headers.

Actions

Also available in: Atom