yii2相关

yii2相关文档文档2

饿了么UI  element UI 文档

phpstudy nginx yii2:伪静态:

location / {
    index  index.html index.htm index.php;
    if (!-e $request_filename) {
        rewrite  ^(.*)$  /index.php?s=/$1  last;
        break;
    }
    #autoindex  on;
}

  或

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

  

posted on 2024-11-09 13:42  andydaopeng  阅读(0)  评论(0编辑  收藏  举报

导航