nginx下如何支持PATH_INFO

2023-04-07 21:30:00 path nginx 支持

在nginx中,需要通过配置来支持PATH_INFO。

首先,确保nginx的版本是0.7.7或以上。其次,在配置文件中加入以下配置:

location / { try_files $uri $uri/ /index.php?$args; }

这样就可以支持PATH_INFO了。

相关文章