《PHP应用:yii2.0实现pathinfo的形式访问的配置方法》要点:
本文介绍了PHP应用:yii2.0实现pathinfo的形式访问的配置方法,希望对您有用。如果有疑问,可以联系我们。
相关主题:YII框架
PHP学习yii2.0默认的拜访形式为:dxr.com/index.php?r=index/list,一般我们都会配置成pathinfo的形式来拜访:dxr.com/index/list,这样更符合用户习惯.
PHP学习具体的配置办法为:
PHP学习一.设置装备摆设yii2.0.
PHP学习打开config目录下的web.php,在$config = [ 'components'=>[ 加到这里 ] ]中参加:
PHP学习
'urlManager' => [
'enablePrettyUrl' => true,
'showScriptName' => false,
'rules' => [
],
],
PHP学习
PHP学习此时,yii2.0已经支持以pathinfo的形式拜访了,如果此时拜访不了,继续往下看.
PHP学习二.设置装备摆设web服务器.
PHP学习1.如果是apache,在入口文件(index.php)所在的目录下新建一个文本文件,接着另存为.htaccess,用记事本打开此文件参加:
PHP学习
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
PHP学习保留即可.
PHP学习2.如果是nginx,在nginx配置文件中参加:
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;
}
}
PHP学习三:重启web服务器.
PHP学习至此,设置装备摆设完毕.
《PHP应用:yii2.0实现pathinfo的形式访问的配置方法》是否对您有启发,欢迎查看更多与《PHP应用:yii2.0实现pathinfo的形式访问的配置方法》相关教程,学精学透。维易PHP学院为您提供精彩教程。
转载请注明本页网址:
http://www.vephp.com/jiaocheng/6966.html