在使用 Centos 迁移到新服务器后,一些行为发生了变化。
当获取http://example.com(没有 index.html)时,环境变量 REQUEST_URI 包含“/index.html”。
我希望:
获取http://example.com时,REQUEST_URI 为“/” 。
获取http://example.com/index.html时,REQUEST_URI 为“/index.html” 。
这对我的 .htaccess 有影响(重写器对'index.html'而不是'空字符串'做出反应)以及我的脚本(Perl $ENV{'REQUEST_URI'})
当仅获取http://example.com时,如何激发 REQUEST_URI 填充“/” ?