﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
12497,htaccess.ms has a slightly under-optimized rule,Denis-de-Bernardy,nacin,"it goes:

{{{
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . - [L]
}}}

inconveniently, this does not catch the root folder, because the latter won't match the dot.

this will, however:

{{{
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
}}}
",defect (bug),closed,normal,,Multisite,3.0,normal,duplicate,,
