时间:2021-07-21人气:-
(此图片来源于网络,如有侵权,请联系删除! )
(此图片来源于网络,如有侵权,请联系删除! )
(此图片来源于网络,如有侵权,请联系删除! )
5:PC模板修改识别代码中跳转路径。1<meta http-equiv="mobile-agent" content="format=xhtml;url={dede:global.cfg_mobileurl/}/index.php">修改成:
1<meta http-equiv="mobile-agent" content="format=xhtml;url={dede:global.cfg_wap/}/index.php">6:找到 includedialogselect_images_post.php 第108行
1$fileurl = $activepath.'/'.$filename;换成:
1$fileurl = $cfg_cmsurl.$activepath.'/'.$filename;7: 修改目录include下的文件extend.func.php,在最后面添加一个函数方法
1function replaceurl($newurl)2{3$newurl=str_replace('src="/uploads/allimg/','src="http://你的域名/uploads/allimg/',$newurl);4return $newurl;5}另外调用文章正文内容的标签{dede:field.body/}
1{dede:field.body function='replaceurl(@me)'/}