DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8493>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8493 mod_rewrite does not try index.html like it used to [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED ------- Additional Comments From [EMAIL PROTECTED] 2003-02-04 13:04 ------- > RewriteEngine On > RewriteCond %{REQUEST_FILENAME} -f > RewriteRule /* /cgi-bin/script.cgi [T=application/x-httpd-cgi,L] This cannot work. /* matches only slashes. You probably want something like /.* The other problem (DirectoryIndex doesn't apply): IMHO, This is not a mod_rewrite bug. It seems, that we have more and more issues, comin' up with the new 2.0 internal_fast_redirect stuff, used, for example, by mod_dir. That means especially that there is no longer a real internal redirect from / to /index.html, so it cannot apply. Jon, you may try RewriteCond %{LA-U:REQUEST_FILENAME} -f ... Bug 13211 suffers from the same function (fast_redirect). Either we have to document it, or we should change it back to a normal internal redirect (or spend some time in reworking and rethinking that fast_redirect function). Opinions? --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
