服务器 发布日期:2024/11/1 浏览次数:1
本文实例分析了nginx下支持PATH_INFO的方法。分享给大家供大家参考,具体如下:
要想让nginx支持PATH_INFO,首先需要知道什么是pathinfo,为什么要用pathinfo?
pathinfo不是nginx的功能,pathinfo是php的功能。
php中有两个pathinfo,一个是环境变量$_SERVER['PATH_INFO'];另一个是pathinfo函数,pathinfo() 函数以数组的形式返回文件路径的信息;。
nginx能做的只是对$_SERVER['PATH_INFO]值的设置。
下面我们举例说明比较直观。先说php中两种pathinfo的作用,再说如何让nginx支持pathinfo。
php中的两个pathinfo
php中的pathinfo()
pathinfo()函数可以对输入的路径进行判断,以数组的形式返回文件路径的信息,数组包含以下元素。
[dirname] 路径的目录
[basename] 带后缀 文件名
[extension] 文件后缀
[filename] 不带后缀文件名(需php5.2以上版本)
例如
<"/nginx/test.txt")); ?>
输出
Array ( [dirname] => /nginx [basename] => test.txt [extension] => txt [filename] => test )
php中的$_SERVER['PATH_INFO']
PHP中的全局变量$_SERVER['PATH_INFO'],PATH_INFO是一个CGI 1.1的标准,经常用来做为传参载体。
被很多系统用来优化url路径格式,最著名的如THINKPHP框架。
对于下面这个网址:
http://www.test.cn/index.php/test/my.html"htmlcode">
<"color: #0000ff">1.可以通过rewrite方式代替php中的PATH_INFO实例:thinkphp的pathinfo解决方案
设置URL_MODEL=2
location / { if (!-e $request_filename){ rewrite ^/(.*)$ /index.php"color: #0000ff">2.nginx配置文件中设置PATH_INFO值请求的网址是/abc/index.php/abc
PATH_INFO的值是/abc
SCRIPT_FILENAME的值是$doucment_root/abc/index.php
SCRIPT_NAME /abc/index.php旧版本的nginx使用如下方式配置
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; fastcgi_param SCRIPT_FILENAME $document_root$script; fastcgi_param SCRIPT_NAME $script; fastcgi_param PATH_INFO $path_info; }新版本的nginx也可以使用fastcgi_split_path_info指令来设置PATH_INFO,旧的方式不再推荐使用,在location段添加如下配置。
location ~ ^.+\.php { (...) fastcgi_split_path_info ^(("color: #0000ff">http://blog.it985.com/7768.html
本文出自 IT985博客 ,转载时请注明出处及相应链接。希望本文所述对大家nginx服务器配置有所帮助。