PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

Nginx配置PATHINFO隐藏thinkphp index.php

不言
不言 原创
2023-03-31 14:30:01 1461浏览

这篇文章主要介绍了Nginx配置PATHINFO隐藏thinkphp index.php,本文直接给出配置示例,需要的朋友可以参考下

Nginx配置PATHINFO隐藏index.php
Nginx配置文件里放入这段代码

server { 
  listen    80;
  default_type text/plain;
  root /var/www/html;
  index index.php index.htm index.html;
 #隐藏index.php
  location / {
     if (!-e $request_filename) {
          #一级目录
         # rewrite ^/(.*)$ /index.php/$1 last;
          #二级目录
          rewrite ^/MYAPP/(.*)$ /MYAPP/index.php/$1 last;
       } 
  }
 #pathinfo设置
    location ~ \.php($|/) {
      fastcgi_pass  127.0.0.1:9000;
      fastcgi_index index.php;
      fastcgi_split_path_info ^(.+\.php)(.*)$;
      fastcgi_param  PATH_INFO $fastcgi_path_info;
      fastcgi_param SCRIPT_FILENAME  $document_root$fastcgi_script_name;
      include    fastcgi_params;
    }
 }

以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!

相关推荐:

Laravel框架模板加载,分配变量及简单路由功能的分析

在Nginx下实现pathinfo和ThinkPHP的URL模式

以上就是Nginx配置PATHINFO隐藏thinkphp index.php的详细内容,更多请关注php中文网其它相关文章!

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。