thinkphp在nginx服务器下多种访问形式规则

建站交流10年前 (2015-01-21)16160

  1. location / {

  2.  root /var/www;

  3.  index index.html index.htm index.php;

  4.  if (!-e $request_filename) {

  5.  rewrite ^/index.php(.*)$ /index.php?s=$1 last;

  6.  rewrite ^(.*)/index.php?s=$1 last;

  7.  break;

  8.  }

  9. }

标签: thinkphpnginx

“thinkphp在nginx服务器下多种访问形式规则” 的相关文章

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。