yii随笔(三) 开启友好路径

概述:实现 localhost/site/login 访问 localhost/index.php?r=site/login
1. web server 配置
a. nginx 配置
location / {

try_files $uri $uri/ /index.php?$args;
}

b. apache 配置

DocumentRoot "webroot"


RewriteEngine on

# If a directory or a file exists, use the request directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Otherwise forward the request to index.php
RewriteRule . index.php

# ...other settings...

2. 在配置文件中的 components 里 添加如下(配置urlManager)
'urlManager' =>[
'class' => 'yii\web\UrlManager',
'showScriptName' => false,
'enablePrettyUrl' => true,
],

此条目发表在yii2分类目录。将固定链接加入收藏夹。