兔八哥极品软件园    运行: 4492天 | 文章:640 篇 | 评论:505 条 | 碎语:1条

Yii Nginx rewrite配置

作者:admin 发布于:2017-3-15 15:06 Wednesday


在/模块/config/main.php

的components里加入:

 

 'components' => [  
        'urlManager' => [  
                'class' => 'yii\web\UrlManager',  
                'enablePrettyUrl' => true,  
                'showScriptName' => false,  
        ],  
] 

 

设置nginx 伪静态

location / {  
    if (!-e $request_filename){  
         rewrite ^/(.*) /index.php last;  
    }  
}  


Powered by 兔八哥极品软件 苏ICP备12049267号 sitemap