我的分组: A B C
Options +FollowSymLinks<IfModule mod_rewrite.c>RewriteEngine onRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^(.*)$ index.php/B/$1 [QSA,PT,L]</IfModule>
呃 我知道怎么回事了,压根儿没执行到RewriteRule ^(.*)$ index.php/B/$1 [QSA,PT,L]
但是当我访问http://b.xxx.com/index 也是执行的A组的IndexAction,这我就想不通了啊
访问http://b.xxx.com/index的时候 ,在入口文件中输出server,发现没有REDIRECT_STATUS,说明没有重写成功
http://b.xxx.com/
http://b.xxx.com/Index
http://b.xxx.com/Index/index
http://b.xxx.com/Index/index.html
这些都没重写成功,第一个没成功,还可以理解,但是第二三四个就百思不得其解了,更不能理解的是,下面的却能重写成功:
http://b.xxx.com/Other
http://b.xxx.com/Other/index
http://b.xxx.com/Other/index.html