1. 程式人生 > >ThinkPHP 常用配置 和 四種url訪問方式

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 地址重寫
<Directory "C:/AppServ/www">
Options Indexes FollowSymLinks
#一定要把 multiviews 取掉
AllowOverride All
Order allow,deny
Allow from all
</Directory>
3)重啟 apache
4)把.htaccess 放到入口檔案目錄下:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

4.相容模式
http://localhost/test/?s=/Index/index/id/10
預設訪問模組和方法:
convention.php:
'DEFAULT_MODULE' => 'Index', // 預設模組名稱
'DEFAULT_ACTION' => 'index', // 預設操作名稱