views:

17

answers:

1

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

A: 

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
Thanks but '-' stand for what ?
Aly
It means the path shouldn't be changed
andrewmu