Discuz X2.5论坛去掉forum.php(默认首页)
Discuz X2.5论坛去掉forum.php(默认首页)很多站长朋友们都在求助怎么样将域名后面的forum.php portal.php去掉。给大家提供一个方法修改方法:
打开根目录下的index.php
查找:if(!empty($url)) {
$delimiter = strrpos($url, '?') ? '&' : '?';
if($_GET['fromuid']) {
$url .= $delimiter.'fromuid='.$_GET['fromuid'];
} elseif($_GET['fromuser']) {
$url .= $delimiter.'fromuser='.$_GET['fromuser'];
}
header("HTTP/1.1 301 Moved Permanently");
header("location: $url");
} else {
require './'.$_ENV['curapp'].'.php';
}在前面加上:$url = '';
$_ENV['curapp'] = 'portal';介绍:
假如想设置论坛为默认首页,把代码中的 $_ENV['curapp'] = 'portal'; 替换为 $_ENV['curapp'] = 'forum';
假如想要空间为默认首页:替换为 $_ENV['curapp'] = 'home';
OK就可以的了。
页:
[1]