yii2.0实现pathinfo的形式访问的配置方法

yii2.0认的访问形式为:dxr.com/index.PHP?r=index/list,一般我们都会配置成pathinfo的形式来访问:dxr.com/index/list,这样更符合用户习惯。

具体的配置方法为:

一.配置yii2.0。

打开config目录下的web.PHP,在$config = [ 'components'=>[ 加到这里 ] ]中加入:

[ 'enablePrettyUrl' => true,'showScriptName' => false,'rules' => [ ],],

此时,yii2.0已经支持以pathinfo的形式访问了,如果此时访问不了,继续往下看。

二.配置web服务器。

1.如果是apache,在入口文件(index.PHP)所在的目录下新建一个文本文件,接着另存为.htaccess,用记事本打开此文件加入:

rush:PHP;"> RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.PHP

保存即可。

2.如果是Nginx,在Nginx配置文件中加入:

rush:PHP;"> 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服务器。

至此,配置完毕。

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...