0
這裏是我的文件夾結構htaccess的重寫索引文件夾到PHP文件
test
-.htaccess
-app
--index.php
我想,當我去http://localhost/test/,它改寫測試/應用/ index.php文件(無重定向)
我的htaccess下面。現在它工作正常與url http://localhost/test/some/thing。使用URL http://localhost/test/,它仍然顯示文件夾測試
<IfModule mod_rewrite.c>
RewriteBase /test/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /test/app/index.php [L]
</IfModule>
它不工作.... – complez 2012-04-15 01:26:29