I see the same .htaccess code snippet written with two different ways as follows:
<Files .htaccess>
order allow,deny
deny from all
</Files>
and
<Files .htaccess>
Order Allow,Deny
Deny from all
</Files>
I'm I right to assume both versions are equally valid? Are all .htaccess commands case insensitive?