易企CMS:修改面包屑导航中的“网站首页”
本文最后更新于2021年11月9日,已超过1107天没有更新,若内容或图片失效,请留言反馈。
易企 CMS 面包屑导航中,链接到首页的文本是“网站首页”,如果是为了 SEO 或者做其它语种的网站,就需要修改这个地方。
要修改的目标文件是易企 CMS 所在目录的include/common.inc.php
,代码在第 15 行。
<?php
ini_set('display_errors',0);
error_reporting(0);
define("YIQIINC",preg_replace("/[\/\\\\]{1,}/i", '/', dirname(__FILE__) ));
define("YIQIROOT",preg_replace("/[\/\\\\]{1,}/i", '/', substr(YIQIINC,0,-8) ));
define("YIQIPATH", str_replace(GetRootPath(), "", YIQIROOT.'/'));
header("content-type:text/html; charset=utf-8");
require_once 'common.func.php';
require_once 'data.class.php';
require_once 'templets.inc.php';
require_once 'version.php';
if(phpversion() > '5.1.0')
date_default_timezone_set('Asia/Shanghai');
$tempinfo->Crumb('网站首页');
function GetRootPath()
{
$sRealPath = realpath('.');
$sSelfPath = $_SERVER['PHP_SELF'];
$sSelfPath = str_replace('//','/',$sSelfPath);
$sSelfPath = substr( $sSelfPath, 0, strrpos($sSelfPath, '/'));
return preg_replace("/[\/\\\\]{1,}/i", '/',substr( $sRealPath, 0, strlen($sRealPath) - strlen($sSelfPath)));
}
?>
评论已关闭