修改index.php文件代码 查找代码:
[code]$url = empty($_ENV['domain']['app']['default']) ? (!empty($_ENV['domain']['defaultindex']) ? $_ENV['domain']['defaultindex'] : 'forum.php') : 'http://'.$_ENV['domain']['app']['default']; [/code]改为:
[code]$_ENV['curapp'] = str_replace('.php', '', $_ENV['domain']['defaultindex']);[/code]
|