ThinkPHP3.2URL重寫隱藏應用的入口文件index.php

可以通過URL重寫隱藏應用的入口文件index.php,下面是相關服務器的配置參考:

[ Apache ]

  1. httpd.conf配置文件中加載了mod_rewrite.so模塊
  2. AllowOverride None 將None改爲 All
  3. 把下面的內容保存爲.htaccess文件放到應用入口文件的同級目錄下
  1. <IfModule mod_rewrite.c>
  2. RewriteEngine on
  3. RewriteCond %{REQUEST_FILENAME} !-d
  4. RewriteCond %{REQUEST_FILENAME} !-f
  5. RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
  6. </IfModule>

[ IIS ]

如果你的服務器環境支持ISAPI_Rewrite的話,可以配置httpd.ini文件,添加下面的內容:

  1. RewriteRule (.*)$ /index\.php\?s=$1 [I]

在IIS的高版本下面可以配置web.Config,在中間添加rewrite節點:

  1. <rewrite>
  2. <rules>
  3. <rule name="OrgPage" stopProcessing="true">
  4. <match url="^(.*)$" />
  5. <conditions logicalGrouping="MatchAll">
  6. <add input="{HTTP_HOST}" pattern="^(.*)$" />
  7. <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
  8. <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
  9. </conditions>
  10. <action type="Rewrite" url="index.php/{R:1}" />
  11. </rule>
  12. </rules>
  13. </rewrite>

[ Nginx ]

在Nginx低版本中,是不支持PATHINFO的,但是可以通過在Nginx.conf中配置轉發規則實現:

  1. location / { // …..省略部分代碼
  2. if (!-e $request_filename) {
  3. rewrite ^(.*)$ /index.php?s=$1 last;
  4. break;
  5. }
  6. }

其實內部是轉發到了ThinkPHP提供的兼容模式的URL,利用這種方式,可以解決其他不支持PATHINFO的WEB服務器環境。

如果你的ThinkPHP安裝在二級目錄,Nginx的僞靜態方法設置如下,其中youdomain是所在的目錄名稱。youdomain需要按照入口文件index.php的目錄來確定。

  1. location /youdomain/ {
  2. if (!-e $request_filename){
  3. rewrite ^/youdomain/(.*)$ /youdomain/index.php?s=$1 last;
  4. }
  5. }

原來的訪問URL:

http://serverName/index.php/模塊/控制器/操作/[參數名/參數值...]

設置後,我們可以採用下面的方式訪問:

http://serverName/模塊/控制器/操作/[參數名/參數值...]

默認情況下,URL地址中的模塊不能省略,如果你需要簡化某個模塊的URL訪問地址,可以通過設置模塊列表和默認模塊或者採用子域名部署到模塊的方式解決,請參考後面的模塊和域名部署部分。

發佈了14 篇原創文章 · 獲贊 11 · 訪問量 25萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章