概述:实现 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教程有兴趣的朋友有所帮助。