我用我的博客上TinyMCE的,它似乎被删除我试图将代码粘贴。
我想补充一点:
<Files somefile.png>
DefaultType application/x-httpd-php
</Files>
(这是一个htaccess的指令)
这会保存OK(为&lt;和&gt;在html),但是当我重新打开我的形式进行编辑,它就会转化为:
DefaultType application/x-httpd-php
编辑:我使用的Symfony的形式TinyMCE的,使用sfFormExtraPlugin。
编辑2:我试过verify_html:假....现在我的代码将被转换为:
<p><files exec="" jpg=""><br /> DefaultType application/x-httpd-php<br /></files></p>
编辑3:我的TinyMCE的配置是:
tinyMCE.init({
mode: "exact",
elements: "content_contents",
theme: "advanced",
width: "500px",
height: "400px",
theme_advanced_toolbar_location: "top",
theme_advanced_toolbar_align: "left",
theme_advanced_statusbar_location: "bottom",
theme_advanced_resizing: true
,
language : "fr",
convert_urls : false,
verify_html : false
});