Using RegEx in Apache's directives in config files and .htaccess
If I understand correctly expression .ht* in the next code will match all that starts with .ht, so my .ht_lalala is safe. <Files ".ht*"> Require all denied </Files> But what about next one? (^.ht|~$|back|BACK|backup|BACKUP$) Is it correct for matching files:…