admin 发表于 2014-6-25 16:56:03

Discuz X2.5去掉论坛标题底部Powered by Discuz

Discuz X2.5去掉论坛标题底部Powered by Discuz
[*]
[*]|
[*]浏览:1416
[*]|
[*]更新:2013-04-05 16:11

第一次使用Discuz X2.5做论坛,现在已经到了2.5了,我最初使用的时候还不叫x
看来技术发展的够快的
闲话少说寻找去掉标题里“Powered by Discuz”和页面底部"Powered by Discuz X2.5"的方法,其实页面底部的倒无所谓,就是标题里的对搜索引擎不好,其解决方法如下:
先修改header头部的title,找到如下的位置,大约在第六行
http://hiphotos.baidu.com/exp/pic/item/61183b2dd42a2834da39456f5ab5c9ea14cebffc.jpg


原来的代码
<title><!--{if !empty($navtitle)}-->$navtitle - <!--{/if}--><!--{if empty($nobbname)}--> $_G['setting']['bbname'] - <!--{/if}--> Powered by Discuz!</title>
修改为
<title><!--{if !empty($navtitle)}-->$navtitle<!--{/if}--><!--{if empty($nobbname)}--> $_G['setting']['bbname'] <!--{/if}--></title>
一定记着把 - 去掉 要不你的浏览器在标题处还是出现 - 这个问题麻烦了我好几天呢
改后的只留下 论坛的名称就行了,其名称可在后台 全局 seo 设置里面修改你想要的信息
http://hiphotos.baidu.com/exp/pic/item/35e940df8db1cb1370334e77dc54564e92584b38.jpg
修改footer尾部的去掉Powered by Discuz!X2.5
在footer.htm中大约在76行寻找
原来代码
<div id="frt">
<p>Powered by <strong><a href="http://www.discuz.net" target="_blank">Discuz!</a></strong> <em>$_G['setting']['version']</em><!--{if !empty($_G['setting']['boardlicensed'])}--> <a href="http://license.comsenz.com/?pid=1&host=$_SERVER" target="_blank">Licensed</a><!--{/if}--></p>
<p>© 2001-2012 <a href="http://www.comsenz.com" target="_blank">Comsenz Inc.</a></p>
</div>
修改后
<div id="frt">
<p>Powered by <strong><a href="http://www.fenxianglianmeng.com" target="_blank">$_G['setting']['bbname']</a></strong>
<!--{if !empty($_G['setting']['boardlicensed'])}-->
<a href="http://license.comsenz.com/?pid=1&host=$_SERVER" target="_blank">Licensed</a><!--{/if}--></p>
<p>© 2001-2012 <a href="http://www.comsenz.com" target="_blank">Comsenz Inc.</a></p>
</div>







页: [1]
查看完整版本: Discuz X2.5去掉论坛标题底部Powered by Discuz