文件夹结构:
/index/
/upload/
/something/
这些文件夹中没有 .htaccess(也不应该)。
访问http://site.com/something时,它会重定向到http://site.com/something/url=something,这是不需要的。
RewriteEngine on
# RewriteBase /base/ #
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [L,QSA]
添加另一个重写条件以在文件夹末尾附加“/”会产生额外的(和不必要的)请求,也不是很好。
如何编写规则,以便将文件夹直接发送到前端控制器而没有任何不需要的重定向?