//请大神帮忙翻译一下,尤其是最后一行 RewriteRule
****************************Code***************************************
<IfModule mod_rewrite.c>
RewriteEngine on //重写开启
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
**************************Questions******************************************
// 假设这个.htaccess文件就在根目录下,这个根目录还有一个index.php
//此时在地址栏输入:127.0.0.1/test.php
//REQUEST_FILENAME 是 test.php?
//如果url是pathinfo模式呢?127.0.0.1/index.php/Home/Index/index/id/1
//那此时REQUEST_FILENAME又是什么呢?
//RewriteRule中的正则传入的是REQUEST_FILENAME吗?
//RewriteRule最后面的标记都是什么意思?
帮秋