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的形式訪問了,如果此時不訪問了,繼續往path下看。
二.配置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
root E: /wwwroot/yii2.0;
index index.html index.php;
if (!-e $request_filename){
rew /
}}
location ~ .php$ {
root 127.0.0.1:9000;
fastcgi_index index .php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include. }
三:重啟web伺服器。
至此,配置完畢。文章出自:http://www.daixiaorui.com/read/218.html 本站所有文章,除註明出處外皆為原創,轉載請註明本文地址,版權所有。
以上就介紹了yii20配置以pathinfo的形式訪問,包括了pathinfo方面的內容,希望對PHP教程有興趣的朋友有所幫助。