.htaccess.sample 499 B

1234567891011
  1. ##############################################
  2. ## Allow access to command.php, website.php, export.php, pathChecker.php, locales.php, deleteMagentoGeneratedCode.php and log.php
  3. <FilesMatch "command.php|website.php|export.php|pathChecker.php|deleteMagentoGeneratedCode.php|log.php|locales.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>