偽靜態(tài)規(guī)則的好處就是:可以通過URL重寫隱藏應(yīng)用的入口文件 index.php。
由于ThinkPHP版本很多,例如:3.x、5.x、6.x。我這里以ThinkPHP5.0為示例;下面是相關(guān)服務(wù)器的配置參考:
一、Apache偽靜態(tài)規(guī)則
1、httpd.conf 配置文件中需加載 mod_rewrite.so 模塊;
2、AllowOverride None 將 None 改為 All;
3、把下面的內(nèi)容保存為 .htaccess 文件放到應(yīng)用入口文件的同級(jí)目錄下;
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>
二、IIS偽靜態(tài)規(guī)則
如果你的服務(wù)器環(huán)境支持ISAPI_Rewrite的話,可以配置httpd.ini文件,添加下面的內(nèi)容:
RewriteRule (.*)$ /index\.php\?s=$1 [I]
在IIS的高版本下面可以配置web.Config,在中間添加rewrite節(jié)點(diǎn):
<rewrite>
<rules>
<rule name="OrgPage" stopProcessing="true">
<match url="^(.*)$" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" pattern="^(.*)$" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" />
</rule>
</rules>
</rewrite>
三、Nginx偽靜態(tài)規(guī)則
在Nginx低版本中,是不支持PATHINFO的,但是可以通過在Nginx.conf中配置轉(zhuǎn)發(fā)規(guī)則實(shí)現(xiàn):
location / { // …..省略部分代碼
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}
原理:其實(shí)內(nèi)部是轉(zhuǎn)發(fā)到了ThinkPHP提供的兼容URL,利用這種方式,可以解決其他不支持PATHINFO的WEB服務(wù)器環(huán)境。
如果你的應(yīng)用安裝在二級(jí)目錄,Nginx的偽靜態(tài)方法設(shè)置如下,其中 youdomain 是所在的目錄名稱。
location /youdomain/ {
if (!-e $request_filename){
rewrite ^/youdomain/(.*)$ /youdomain/index.php?s=/$1 last;
}
}
原來的訪問URL:
http://serverName/index.php/模塊/控制器/操作/[參數(shù)名/參數(shù)值...]
設(shè)置后,我們可以采用下面的方式訪問:
http://serverName/模塊/控制器/操作/[參數(shù)名/參數(shù)值...]