1 php
2 define(‘APP_DEBUG‘,TRUE); // 开启调试模式 常量定义代码
3 require ‘/ThinkPHP框架所在目录/ThinkPHP.php‘;
define(‘APP_DEBUG‘,false);
1 // 项目配置文件
2 return array(
3 ‘配置参数‘ => ‘配置值‘,
4 // 更多配置参数
5 //...
6 );
1 class IndexAction extends Action { // 这里的类名要跟文件名一致
2 public function index(){
3 echo ‘hello,world!‘;
4 }
5 }
1 ‘URL_PATHINFO_DEPR‘=>‘-‘, // 更改PATHINFO参数分隔符
http://localhost/app/index.php/module-action-var-value/
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]