技术服务
发帖说明
数据导航
资源圈 - ZiYuanQ
»
首页
›
分类
›
站长资料
›
去除Discuz论坛域名后面的forum.php
QQ
[discuz教程]
去除Discuz论坛域名后面的forum.php
[复制链接]
本站网友
发表于 2018-12-24 16:47
|
阅读模式
去除Discuz forum.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';
discuz教程
回复
举报
返回列表
删帖注销
|
手机版
|
资源圈
GMT+8, 2025-1-18 15:50
Powered by
Discuz!
© 20022-2026 Comsenz Inc.
快速回复
返回顶部
返回列表