Thank you, Bjorn, for your response.<div><br></div><div>Our hosting provider tells me that the following routines have been added to the default config.</div><div><br></div><div><div><font class="Apple-style-span" face="'courier new', monospace">sub vcl_recv {</font></div>

<div><font class="Apple-style-span" face="'courier new', monospace">  # Cache things with these extensions</font></div><div><font class="Apple-style-span" face="'courier new', monospace">  if (req.url ~ "\.(js|css|JPG|jpg|jpeg|png|gif|gz|tgz|bz2|tbz|mp3|ogg|swf)$") {</font></div>

<div><font class="Apple-style-span" face="'courier new', monospace">    unset req.http.cookie;</font></div><div><font class="Apple-style-span" face="'courier new', monospace">    return (lookup);</font></div>

<div><font class="Apple-style-span" face="'courier new', monospace">  }</font></div><div><font class="Apple-style-span" face="'courier new', monospace">}</font></div><div><font class="Apple-style-span" face="'courier new', monospace">sub vcl_fetch {</font></div>

<div><font class="Apple-style-span" face="'courier new', monospace">  # Cache things with these extensions </font></div><div><font class="Apple-style-span" face="'courier new', monospace">  if (req.url ~ "\.(js|css|JPG|jpg|jpeg|png|gif|gz|tgz|bz2|tbz|mp3|ogg|swf)$") {</font></div>

<div><font class="Apple-style-span" face="'courier new', monospace">    unset req.http.set-cookie;</font></div><div><font class="Apple-style-span" face="'courier new', monospace">    set obj.ttl = 1h;</font></div>

<div><font class="Apple-style-span" face="'courier new', monospace">  } </font></div><div><font class="Apple-style-span" face="'courier new', monospace">}</font></div></div><div><br></div><div>Clearly the req.url variable contains the entire request URL, including the querystring. Is there another variable that I should be using instead that would only include the script name? If this is the default behavior, I'm inclined to cry "bug".</div>

<div><br></div><div>You can test that other script for yourself by substituting <a href="http://maxisavergroup.com">maxisavergroup.com</a> for the domain in the example URLs I provided.</div><div><br></div><div>PS: We are using Varnish 2.0.6</div>

<div><br></div>