这是我的 index.php 文件:
<?php
echo $_SERVER['PATH_INFO'];
?>
这是我的 htaccess 文件:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /something
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
如果我输入 something/index.php/hello,结果应该是 /hello
但是如果我是 something/hello,它会
在第 3 行显示 Undefined index: PATH_INFO in /Library/WebServer/Documents/xcart/index.php
我怎么能得到相同的结果?