最新消息: 新版网站上线了!!!

ThinkPHP入口文件&配置文件

入口文件:
<?php
define('APP_DEBUG',true);
define('APP_NAME', 'Home');
define('APP_PATH', './Home/');
define('APP_DEBUG', false);
require( "ThinkPHP/ThinkPHP.php");
 
配置文件:
<?php
return array(
    //'配置项'=>'配置值'
    'DEFAULT_MODULE'            =>  'Index',            //默认模块
    'URL_MODEL'                 =>  2,                  // 如果你的环境不支持PATHINFO 请设置为3
    'DB_TYPE'                   =>  'mysql',
    'DB_HOST'                   =>  '127.0.0.1',
    'DB_NAME'                   =>  'db_article',
    'DB_USER'                   =>  'root',
    'DB_PWD'                    =>  '',
    'DB_PORT'                   =>  '3306',
    'DB_PREFIX'                 =>  '',
    'SESSION_AUTO_START'        =>  true,
    'APP_STATUS'                =>  'test',
    'URL_HTML_SUFFIX'           =>  'html',             //伪静态后缀
    'URL_CASE_INSENSITIVE'      =>  true,               //不区分大小写
);
?>
 
.htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

转载请注明:谷谷点程序 » ThinkPHP入口文件&配置文件