我在iis7.5上有一个虚拟目录,它具有.mp4文件。
我想在文件夹级别启用缓存,以便视频可以在不缓冲的情况下播放。可以使用以下" web.config"?我想将" web.config"放在文件夹中。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="01:00:00" />
</staticContent>
</system.webServer>
</configuration>
我也想将缓存限制为1GB,我该如何实现?
这可能会帮助您:
<configuration>
<location path="showStockPrice.asp">
<system.webserver>
<caching>
<profiles>
<add varybyquerystring="*"location="Any"
duration="00:00:01" policy="CacheForTimePeriod"
extension=".asp">
</profiles>
</caching>
</system.webserver>
</location>
</configuration>
更多详细信息在这里和此处。
<configuration>
<system.web>
<httpRuntime maxRequestLength="1048576" />
</system.web>
</configuration>
1048576 = 1024 MB您可以阅读此帖子:Windows Server 2008 II 7.5最大文件接受限制
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".mp4" mimeType="video/mp4" />
<mimeMap fileExtension=".m4v" mimeType="video/m4v" />
</staticContent>
</system.webServer>
</configuration>
阅读本文,也许可以为您提供帮助。https://blogs.iis.net/bills/how-to-to-add-mime-types-with-iis7-web-config