如果設置整站,就在根目錄web.config設置如下參數,如果是指定目錄,在該目錄下的web.config文件設置如下參數,如果沒有web.config文件,可以直接新建一個:?
<?xml version="1.0" encoding="UTF-8"?>
<configuration><system.webServer><staticContent><remove fileExtension=".html" /> <mimeMap fileExtension=".html" mimeType="text/html;charset=utf-8" /></staticContent> </system.webServer>
</configuration>
?