1. 首页>
  2. 技术文章>
  3. iis配置解决h5微信浏览器缓存vue的index问题

iis配置解决h5微信浏览器缓存vue的index问题

4/28/21 11:55:22 AM 浏览 1441 评论 0

vue缓存

配置文件:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <httpErrors>
            <remove statusCode="404" subStatusCode="-1" />
            <error statusCode="404" prefixLanguageFilePath="" path="/index.html" responseMode="ExecuteURL" />
        </httpErrors>
    </system.webServer>
  <location path="index.html">
    <system.webServer>
      <httpProtocol>
        <customHeaders>
          <add name="Cache-Control" value="no-cache,no-store" />
        </customHeaders>
      </httpProtocol>
    </system.webServer>
  </location>
</configuration>


网友讨论