Apache .htaccess: How to rewrite backslash with slash on Firefox?
问题 How to rewrite backslash '\' with slash '/' on Firefox? Chrome, IE, Safari, Opera has build browser rewrite backslash with slash. But Firefox 3.6.13 returns 404 error page . # Why Firefox returns 404 error page? RewriteCond %{REQUEST_URI} (.*)\\(.*) RewriteRule .* %1/%2 [R=301,L] 回答1: It is Apache and FF bug, https://issues.apache.org/bugzilla/show_bug.cgi?id=35256 Hopefully it'll be fixed in soon feature. AllowEncodedSlashes should really be "on" by default and probably even deprecated. ...