阻止 IIS 7.5 在错误代码上发送 Cache-Control Max-Age

阻止 IIS 7.5 在错误代码上发送 Cache-Control Max-Age

我有一些静态内容,其中附加了缓存控制Max-Age标头,因此客户端将缓存静态内容。但是,当有错误响应建议客户端缓存此内容时,IIS 7.5 仍会发送此标头。

这会产生负面影响,因为某些代理会缓存该错误响应。我可以这样做,Vary: Accept,Accept-Encoding但这并不能真正解决Max-Age错误响应的根本问题。

当前相关的IISweb.config部分是:

<configuration>
  <system.webServer>
    <staticContent>
      <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
    </staticContent>
  </system.webServer>
</configuration>

有什么办法可以让我们不告诉客户端或代理缓存 400/500 错误代码吗?

答案1

我创建了一个基本的测试“套件”。

当我在 IIS 7.0(.NET 4.0 上的集成管道模式)上使用最小 Web.config 运行测试时,一切都通过;当请求的标头与文件的标头不匹配时,测试文件的Cache-Control响应标头设置为。privateAcceptContent-Type

这使我相信您有一些模块中断了 IIS 的静态缓存例程或者 IIS 7.0 和 7.5 在这里有所不同。

以下是我使用的文件(some-script.js由于它只是一个空文件,因此没有):

Web.Config:

<?xml version="1.0"?>
<configuration>
    <system.web>
        <compilation debug="true" targetFramework="4.0">
        </compilation>
    </system.web>
    <system.webServer>
        <staticContent>
            <!-- Set expire headers to 30 days for static content-->
            <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
        </staticContent>
    </system.webServer>
</configuration>

test.html:

<!doctype html>
<html>
<head>
    <title>http://serverfault.com/questions/346975</title>
    <style>
        body > div
        {
            border:1px solid;
            padding:10px;
            margin:10px;
        }
    </style>
</head>
    <body>
        <div>
            <h2>Request JS file with Accepts: accept/nothing</h2>
            <b>Response Headers: </b>
            <pre id="responseHeaders-1">loading&hellip</pre>
        </div>

        <div>
            <h2>Request JS file with Accepts: */*</h2>
            <b>Response Headers: </b>
            <pre id="responseHeaders-2">loading&hellip</pre>
        </div>

        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
        <script>
            var responseHeaders1 = $("#responseHeaders-1"),
                responseHeaders2 = $("#responseHeaders-2"),
                fetchScript = function (accepts, element, successMsg, errorMsg) {

                    var jXhr = $.ajax({
                        // fetch the resource "fresh" each time since we are testing the Cache-Control header and not caching itself
                        "url": "some-script.js?" + (new Date).getTime(),
                        "headers": {
                            "Accept" : accepts
                        },
                        "complete": function () {
                            var headers = jXhr.getAllResponseHeaders();
                            headers = headers.replace(/(Cache-Control:.+)/i, "<strong><u>$1</u></strong>");
                            element.html(headers);
                        },
                        "success": function () {
                            element.after("<div>" + successMsg + "</div>");
                        },
                        "error": function () {
                            element.after("<div>" + errorMsg + "</div>");
                        }
                    });
                };

                fetchScript("accept/nothing", responseHeaders1, "Uh, your server is sending stuff when the client doesn't accept it.", "Your server (probably) responded correctly.");
                fetchScript("*/*", responseHeaders2, "Your server responded correctly.", "Something went wrong.");
        </script>
    </body>
</html>

答案2

您应该指定要缓存的内容类型。例如,您可以缓存脚本,css,图像等。因此在标签<location path ="Scripts">前使用标签<system.webServer>。所以您的网络配置看起来像这样。

 <location path ="Scripts">
    <system.webServer>
      <staticContent>
        <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="07:00:00" />
      </staticContent>
    </system.webServer>
  </location>
  <location path ="css">
    <system.webServer>
      <staticContent>
        <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="07:00:00" />
      </staticContent>
    </system.webServer>
 </location>

相关内容