本帖最后由 lghyt3 于 2014-01-12 23:40:53 编辑 最近在弄discuz论坛,它的论坛入口页中没有一个是html标签,但是点击后却出现不现的版块,不知怎么弄的,先上个图示意一下,大家注意图中最上沿的地址栏的ID的变化
<?php<br /><br />/**<br /> * [Discuz!] (C)2001-2099 Comsenz Inc.<br /> * This is NOT a freeware, use is subject to license terms<br /> *<br /> * $Id: forum.php 33828 2013-08-20 02:29:32Z nemohou $<br /> */<br /><br /><br />define('APPTYPEID', 2);<br />define('CURSCRIPT', 'forum');<br /><br /><br />require './source/class/class_core.php';<br /><br /><br />require './source/function/function_forum.php';<br /><br /><br />$modarray = array('ajax','announcement','attachment','forumdisplay',<br /> 'group','image','index','medal','misc','modcp','notice','post','redirect',<br /> 'relatekw','relatethread','rss','topicadmin','trade','viewthread','tag','collection','guide'<br />);<br /><br />$modcachelist = array(<br /> 'index' => array('announcements', 'onlinelist', 'forumlinks',<br /> 'heats', 'historyposts', 'onlinerecord', 'userstats', 'diytemplatenameforum'),<br /> 'forumdisplay' => array('smilies', 'announcements_forum', 'globalstick', 'forums',<br /> 'onlinelist', 'forumstick', 'threadtable_info', 'threadtableids', 'stamps', 'diytemplatenameforum'),<br /> 'viewthread' => array('smilies', 'smileytypes', 'forums', 'usergroups',<br /> 'stamps', 'bbcodes', 'smilies', 'custominfo', 'groupicon', 'stamps',<br /> 'threadtableids', 'threadtable_info', 'posttable_info', 'diytemplatenameforum'),<br /> 'redirect' => array('threadtableids', 'threadtable_info', 'posttable_info'),<br /> 'post' => array('bbcodes_display', 'bbcodes', 'smileycodes', 'smilies', 'smileytypes',<br /> 'domainwhitelist', 'albumcategory'),<br /> 'space' => array('fields_required', 'fields_optional', 'custominfo'),<br /> 'group' => array('grouptype', 'diytemplatenamegroup'),<br />);<br /><br />$mod = !in_array(C::app()->var['mod'], $modarray) ? 'index' : C::app()->var['mod'];<br /><br />define('CURMODULE', $mod);<br />$cachelist = array();<br />if(isset($modcachelist[CURMODULE])) {<br /> $cachelist = $modcachelist[CURMODULE];<br /><br /> $cachelist[] = 'plugin';<br /> $cachelist[] = 'pluginlanguage_system';<br />}<br />if(C::app()->var['mod'] == 'group') {<br /> $_G['basescript'] = 'group';<br />}<br /><br />C::app()->cachelist = $cachelist;<br />C::app()->init();<br /><br /><br />loadforum();<br /><br /><br />set_rssauth();<br /><br /><br />runhooks();<br /><br /><br /><br />$navtitle = str_replace('{bbname}', $_G['setting']['bbname'], $_G['setting']['seotitle']['forum']);<br />$_G['setting']['threadhidethreshold'] = 1;<br />require DISCUZ_ROOT.'./source/module/forum/forum_'.$mod.'.php';<br /><br />?>
登入後複製