标签:writer man class 位置 rip use tty pathinfo code
原始访问模式为:http://www.month9bk.com/index.php?r=user/lists
那么想要改成全是/的pathinfo模式我们需要进行以下配置:
1、打开config文件夹下的main.php输入以下代码:
‘urlManager‘ => [ //设置pathinfo模式 ‘enablePrettyUrl‘ => true, ‘showScriptName‘ => false, ‘rules‘ => [ ], ],
此代码的位置为:
2、省略掉index.php,我们需要在入口文件所在的那层目录下边,也就是web目录下创建一个.htaccess文件,然后输入以下内容:
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php
这个时候再访问,就可以了
标签:writer man class 位置 rip use tty pathinfo code
原文地址:https://www.cnblogs.com/hopelooking/p/10282799.html