http://support.microsoft.com/?scid=kb%3Ben-us%3B306231&x=16&y=11
You can resolve the problem on the Apache Web server side if you add the correct MIME type for the HTC behavior with the following command:
AddType text/x-component .htc
If the command AddType is not found or is not available, follow these steps to add the MIME type text/x-component for the .htc file manually to the Apache Web server.
You can resolve the problem on the Apache Web server side if you add the correct MIME type for the HTC behavior with the following command:
AddType text/x-component .htc
If the command AddType is not found or is not available, follow these steps to add the MIME type text/x-component for the .htc file manually to the Apache Web server.
- Locate the directory /Etc/apache/.
- Open the file Mime.types.
- Add the following line to the file: text/x-component htc
- Save and close the file.
- Restart the Apache Web server. The Mime.types file is reloaded after you type: /usr/apache/bin/apachectl restart
如上所說修改Apache配置文件:
1.修改 /apache2/conf/mime.types文件,在末尾增加一行:text/x-component htc
2.修改 /apache2/conf/httpd.conf文件,在末尾增加一行:AddType text/x-component .htc
3.重啟apache服務器
4.清空IE緩存測試下,問題解決了(這個還是有必要的)。
如果增加 AddType text/x-component .htc 后無法啟動Apache,就不要增加了。
從上面的文檔來說其實只要修改其中一個就行了。