I found thy solution method

i found thy solution method:

    location ~* ^.+\.(htm|html|js|css|gif|png|jpg|xml)$ {
            if ($request_uri ~* ^.+\.(js|css)\?v=) {
                    expires max;
            }
            expires 6h;
    }

2009-09-08

Chancey

On Tue, Sep 08, 2009 at 06:35:11PM +0800, Chancey wrote:

i found thy solution method:

    location ~* ^.+\.(htm|html|js|css|gif|png|jpg|xml)$ {
            if ($request_uri ~* ^.+\.(js|css)\?v=) {
                    expires max;
            }
            expires 6h;
    }

location ~* ^.+.(htm|html|gif|png|jpg|xml)$ {
expires 6h;
}

location ~* ^.+.(js|css)$ {

    if ($arg_v) {
        expires max;
    }

    expires 6h;

}