服务器 
首页 > 服务器 > 浏览文章

nginx下配置thinkphp文件的方法

(编辑:jimmy 日期: 2024/11/14 浏览:3 次 )

在上篇文章给大家介绍了在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
}

以上所述是小编给大家介绍的nginx下配置thinkphp文件的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!

上一篇:在Ubuntu 16.04上用Docker Swarm和DigitalOcean创建一个Docker容器集群的方法
下一篇:使用命令行重启Windows服务器的方法
一句话新闻
高通与谷歌联手!首款骁龙PC优化Chrome浏览器发布
高通和谷歌日前宣布,推出首次面向搭载骁龙的Windows PC的优化版Chrome浏览器。
在对骁龙X Elite参考设计的初步测试中,全新的Chrome浏览器在Speedometer 2.1基准测试中实现了显著的性能提升。
预计在2024年年中之前,搭载骁龙X Elite计算平台的PC将面世。该浏览器的提前问世,有助于骁龙PC问世就获得满血表现。
谷歌高级副总裁Hiroshi Lockheimer表示,此次与高通的合作将有助于确保Chrome用户在当前ARM兼容的PC上获得最佳的浏览体验。