时间:2021-07-01 10:21:17 帮助过:16人阅读
让Nginx支持pathinfo
Nginx服务器默认不支持pathinfo, 在需要pathinfo支持的程序中(如thinkphp),则无法支持”/index.php/Home/Index/index”这种网址.
网上流传的解决办法很多,这里提供一种比较简洁的写法(只需要改动2行代码)
典型配置
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME$DOCUMENT_ROOT$fastcgi_script_name;
include fastcgi_params;
}
修改第1,6行,支持pathinfo
location ~ \.php(.*)$ { # 正则匹配.php后的pathinfo部分
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME$DOCUMENT_ROOT$fastcgi_script_name;
fastcgi_param PATH_INFO$1; # 把pathinfo部分赋给PATH_INFO变量include fastcgi_params;
}
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i <= lines; i++) {
$numbering.append($('').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介绍了配置Nginx支持pathinfo模式,包括了pathinfo,nginx方面的内容,希望对PHP教程有兴趣的朋友有所帮助。