0

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

Community
  • 1
  • 1
Aly
  • 1
  • 1

1 Answers1

1

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)

andrewmu
  • 14,276
  • 4
  • 39
  • 37