これが私の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行目の/Library/WebServer/Documents/xcart/index.phpのPATH_INFOと
表示されます。同じ結果が得られますか?