.htaccess.sample 310 B

1234567891011
  1. ##############################################
  2. ## Allow access to command.php
  3. <FilesMatch "command.php">
  4. <IfVersion < 2.4>
  5. order allow,deny
  6. allow from all
  7. </IfVersion>
  8. <IfVersion >= 2.4>
  9. Require all granted
  10. </IfVersion>
  11. </FilesMatch>