欢迎来到代码驿站!

Nginx

当前位置:首页 > 服务器 > Nginx

nginx下配置thinkphp文件的方法

时间:2021-02-15 10:21:15|栏目:Nginx|点击:

在上篇文章给大家介绍了在Nginx上部署ThinkPHP项目教程,今天给大家介绍nginx下thinkphp的配置,具体详解如下:

## domain redirect
#if ($host != "my.ruanzhuangyun.cn"){
#  rewrite ^/(.*)$ http://my.ruanzhuangyun.cn/$1 permanent;
#}
## domain redirect
## tp pathinfo
location /data/www/tp.360ruanzhuang/ {
  index index.php;
  if (!-e $request_filename) {
    rewrite ^/data/www/tp.360ruanzhuang/(.*)$ /data/www/tp.360ruanzhuang/index.php/$1 last;
    break;
  }
}
location ~ .+\.php($|/) {
  set $script $uri;
  set $path_info "/";
  if ($uri ~ "^(.+\.php)(/.+)") {
    set $script   $1;
    set $path_info $2;
  }
  fastcgi_pass 127.0.0.1:9000;
  fastcgi_index index.php?IF_REWRITE=1;
  include fastcgi_params;
  fastcgi_param PATH_INFO $path_info;
  fastcgi_param SCRIPT_FILENAME $document_root/$script;
  fastcgi_param SCRIPT_NAME $script;
}
## pathinfo end 
## index.php hidden
location / {
 if (!-e $request_filename) {
  rewrite ^(.*)$ /index.php?s=$1 last;
  break;
  }
}
## index.php hidden
}

上一篇:weblogic的集群与配置图文方法

栏    目:Nginx

下一篇:联想服务器X3850 X6 配置RAID5阵列图文方法

本文标题:nginx下配置thinkphp文件的方法

本文地址:http://www.codeinn.net/misctech/63378.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有