Possible Duplicate:
mod_rewrite: what does this RewriteRule do?
Hi,
Sorry to bother you.
What's the meaning of this rule ?
RewriteRule ^.*$ - [NC,L]
Thanks in advance.
Bye
That rule applied to all URL patterns (^.*$ matches anything) and [NC,L] means ignore case and don't apply any more rules.
So basically it's making your URL paths case insensitive.
For details, see here (apache.org)
精彩评论