如何去除Powered by douphp版权信息 喵乐博客

2026年09月19日 18:17
有1个网友回答
网友(1):

方法1
打开theme/default/inc目录下footer.tpl 文件
搜索“powered”找到 “{$lang.powered_by} ”直接删除就可以
方法2
打开languages/zh_cn 目录下 common.lang.php 文件
搜索“copyright”找到 $_LANG[‘powered_by’] = “Powered by DouPHP”; 替换成你的版权信息
DouPHP标题版权去除
打开 include 目录下的 action.class.php文件
搜索“Powered” 找到 $page_title = ($titles ? $titles . $GLOBALS[‘_CFG’][‘site_name’] : $GLOBALS[‘_CFG’][‘site_title’]) . ‘ – Powered by DouPHP‘; 这行更改为自己的内容或者直接删除 “ – Powered by DouPHP” 都可以解决