5

我知道这个问题之前已经被问过(并得到了回答),但没有一个建议的解决方案对我有用。

我在 tinyMceConfig.config 中设置了以下内容:

<config key="relative_urls">false</config>

<config key="convert_urls">false</config>

<config key="remove_script_host">false</config> 

我在 tinyMCE.init 脚本中包含以下内容:

relative_urls : false,
remove_script_host : false,
convert_urls : false,

但是当我尝试插入图像时,它只使用相对 url,当我输入完整的 URL 时,它会修剪它。

这是一个时事通讯,所以我需要有绝对链接。任何其他建议,任何人?

我正在使用 Umbraco v4.0.3 和 Tiny MCE 3

4

1 回答 1

3

您还应该禁用remove_script_host. 对我有用的完整配置如下所示:

relative_urls: false,

convert_urls: false,

remove_script_host : false,

于 2013-11-07T07:04:30.297 回答