Umbraco中的TinyMCE Html编辑器已停止工作

Umbraco中的TinyMCE Html编辑器已停止工作,html,editor,tinymce,umbraco,Html,Editor,Tinymce,Umbraco,TinyMCE html编辑器已停止在我的umbraco安装中显示。 如果单击html按钮,将打开新的弹出窗口,但内容从未加载 Chrome给了我: Error 324 (net::ERR_EMPTY_RESPONSE): The server closed the connection without sending any data. IIS日志提供: GET /umbraco_client/tinymce3/themes/umbraco/source_editor.htm

TinyMCE html编辑器已停止在我的umbraco安装中显示。 如果单击html按钮,将打开新的弹出窗口,但内容从未加载

Chrome给了我:

Error 324 (net::ERR_EMPTY_RESPONSE): 
    The server closed the connection without sending any data.
IIS日志提供:

GET /umbraco_client/tinymce3/themes/umbraco/source_editor.htm 
    - 80 - 79.211.65.86 Mozilla/5.0+(Windows+NT+6.1;+WOW64)+AppleWebKit/534.30+
    (KHTML,+like+Gecko)+Chrome/12.0.742.100+Safari/534.30 200 0 0
我的实验表明,同一目录中以.txt结尾的内容得到了正确的服务。 我怀疑重写规则中有某种错误

我尝试的是:

已将~/umbraco_客户端/添加到umbraco预留路径 将source_editor.htm重命名为.aspx
非常感谢任何帮助和想法

可能是某种IIS URL重写或缓存正在进行

如果禁用缓存和url重写,是否会发生任何变化?
您的web.config和UrlRewriting.config文件中关于重写和缓存的内容是什么?

我解决了这个问题。需要一个用于静态内容的http_处理程序。在我将以下内容添加到web.config之后:

<httpHandlers>
<add path="*.htm" verb="*" type="System.Web.StaticFileHandler" validate="True" />
正在提供static.htm文件。微软在这方面有一篇很好的文章: