yii2 nginx去掉index.php?r=

nginx目录下的nginx.config的location节点添加如下配置 
location / {
  if (!-e $request_filename) {
      rewrite  ^(.*)$  /index.php?s=/$1  last;
  }
} 

猜你喜欢

转载自www.cnblogs.com/light-zhang/p/10242593.html
今日推荐