phpcms后台内容管理文章地址错误
文章描述:
phpcms后台内容管理文章地址错误解决方法?
1、打开/phpcms/modules/content/templates/content_list.tpl.php文件,找到大约94行代码,如下修改:
<?php
if($status==99) {
if($r['islink']) {
echo '<a href="'.$r['url'].'" target="_blank">';
} elseif(strpos($r['url'],'http://')!==false) {
echo '<a href="'.$r['url'].'" target="_blank" title="001">';
} else {
// echo '<a href="'.$release_siteurl.$r['url'].'" target="_blank" title="002'.$r['url'].'">';
echo '<a href="'.$r['url'].'" target="_blank" title="'.$r['url'].'">';
}
} else {
echo '<a href="javascript:;" onclick=\'window.open("?m=content&c=content&a=public_preview&steps='.$steps.'&catid='.$catid.'&id='.$r['id'].'","manage")\' title="003">';
}?>
发布时间:2022/10/21
发表评论