【发布时间】:2012-04-14 17:53:54
【问题描述】:
这是我的文件夹结构
test
-.htaccess
-app
--index.php
我想当我去http://localhost/test/时,它重写为test/app/index.php(无重定向)
下面是我的 htaccess。现在它可以正常使用 url http://localhost/test/some/thing。使用 url http://localhost/test/,它仍然显示文件夹 test
的文件索引<IfModule mod_rewrite.c>
RewriteBase /test/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /test/app/index.php [L]
</IfModule>
【问题讨论】: