這篇文章主要介紹了yii2.0實作pathinfo的形式存取的設定方法的相關資料,需要的朋友可以參考下
yii2.0預設的存取形式為:dxr.com/index .php?r=index/list,一般我們都會配置成pathinfo的形式來存取:dxr.com/index/list,這樣比較符合使用者習慣。
具體的設定方法為:
一.設定yii2.0。
開啟config目錄下的web.php,在$config = [ 'components'=>[ 加到這裡] ]中加入:
'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => false, 'rules' => [ ], ],
#此時,yii2.0已經支援以pathinfo的形式存取了,如果此時訪問不了,繼續往下看。
二.設定web伺服器。
1.如果是apache,在入口文件(index.php)所在的目錄下新建一個文字文件,接著另存為.htaccess,用記事本開啟此文件加入:
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php
儲存即可。
2.如果是nginx,在nginx設定檔中加入:
server { listen 80; server_name localhost; location / { root E:/wwwroot/yii2.0; index index.html index.php; if (!-e $request_filename){ rewrite ^/(.*) /index.php last; } } location ~ \.php$ { root E:/wwwroot/yii2.0; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }
三:重啟web伺服器。
至此,配置完畢。
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
以上是yii2.0實作pathinfo的形式存取的設定方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!