当前位置: 首页 > 工具软件 > StartBBS > 使用案例 >

startbbs中去掉index.php

惠诚
2023-12-01

最近看了下startbbs的源码,安装后发现url地址是这个样子:http://startbbs.com/index.php/user/reg,一般人是不希望让别人看到index.php的,翻了一下,发现根目录下index.php没有包含config.php文件,autoload.php中加了这一行:$autoload['config'] = array('myconfig','topicset','openid','mailset','version');打开myconfig.php,代脉如下:


<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

$config = array (
  'site_name' => 'StartBBS- 起点开源论坛-烧饼bbs',
  'index_page' => 'index.php',
  'show_captcha' => 'on',
  'show_editor' => 'off',
  'site_close' => 'on',
  'site_close_msg' => '网站升级中,暂时关闭。',
  'basic_folder' => '',
  'static' => 'white',
  'themes' => 'default',
  'logo' => 'Start<span class=\'green\'>BBS</span>',
  'auto_tag' => 'on',
  'encryption_key' => '9e787742ea32c1b8d167c5543bac1431',
);

将index_page=>'index.php'改为index_page=>'';搞定。


 类似资料: