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


thinkPhP伪静态配置

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

} 

 

nginx目录下的nginx.config的location节点添加如下配置

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

 
 
 
 
 

版权声明:本文为light-zhang原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/light-zhang/p/10242593.html