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 www.daixiaorui.com;
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服務器。
至此,配置完畢。
文章出自:http://www.daixiaorui.com/read/218.html 本站所有文章,除注明出處外皆為原創,轉載請注明本文地址,版權所有。