ThinkPHP 常用配置 和 四种url访问方式

改变左右定界符:
ThinkPHP/Conf/convention.php
'TMPL_L_DELIM' => '<{',

'TMPL_R_DELIM' => '}>',


与数据库连接有关的配置:
ThinkPHP/Conf/convention.php
'DB_TYPE' => 'mysql',
'DB_HOST' => 'localhost'
'DB_NAME' => 'test',
'DB_USER' => 'root',
'DB_PWD' => '123',
'DB_PORT' => '3306',
注:这个配置文件会被所有的 TP 项目共享使用

ThinkPHP  支持四种 URL  模式:
1.普通模式
http://localhost/test/index.php?m=Index&a=index&id=10
获取模块和方法名称:
MODULE_NAME
ACTION_NAME
2.pathinfo 模式
http://localhost/test/index.php/Index/index/id/10
3.rewrite 模式
http://localhost/test/Index/index/id/10
注:修改 apache 配置文件时:
1)LoadModule rewrite_module modules/mod_rewrite.so
2)修改网站根目录支持 rewrite 地址重写

Options Indexes FollowSymLinks
#一定要把 multiviews 取掉
AllowOverride All
Order allow,deny
Allow from all

3)重启 apache
4)把.htaccess 放到入口文件目录下:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

4.兼容模式
http://localhost/test/?s=/Index/index/id/10
默认访问模块和方法:
convention.php:
'DEFAULT_MODULE' => 'Index', // 默认模块名称
'DEFAULT_ACTION' => 'index', // 默认操作名称


你可能感兴趣的:(ThinkPHP详细学习)