在管理面板中,图片与路径../gallery/image-09_05_16_02_27_37-references_4.jpg
相关,看起来不错:
但是在前端网站上有错误的图像路径:
应该是:gallery/image-09_05_16_02_27_37-references_4.jpg
。
我应该怎么做才能在管理员和前台网站中显示正确的路径?
答案 0 :(得分:1)
使用relative_urls: false
和convert_urls: false
并在编辑器中提供完整的图像绝对网址。
$(document).ready(function() {
tinyMCE.init({
elements : "email-template-template",
width : "100%",
relative_urls : false,
convert_urls: false
});
});