PHP - PATH_INFO 问题

PHP - PATH_INFO 问题

这可能属于 stackoverflow.com 网站,但我不这么认为,因为这与 Apache 配置有关。

我收到一个错误:

Notice: Undefined index: PATH_INFO

这是 Apache 的库存配置,我认为您只需AcceptPathInfo On在 httpd.conf 中使用即可:

<Directory "/srv/http">
    Options Indexes FollowSymLinks
    AllowOverride All
    AcceptPathInfo On
    Order allow,deny
    Allow from all
</Directory>

我这里到底配置错了什么?

答案1

这是因为我忽略了一个配置问题。

相关内容