当前位置:Gxlcms > PHP教程 > yii随笔(三)开启友好路径

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

时间:2021-07-01 10:21:17 帮助过:4人阅读

概述:实现 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,
],

以上就介绍了yii随笔(三) 开启友好路径,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行