1# BEGIN All In One WP Security
2#AIOWPS_CUSTOM_RULES_START
3<Files *.php>
4 Order Allow,Deny
5 Deny from all
6</Files>
7
8<FilesMatch "(index|wp-login|shop)\.php$">
9 Order Allow,Deny
10 Allow from all
11</FilesMatch>
12
13<IfModule mod_rewrite.c>
14
15RewriteEngine On
16RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
17RewriteBase /
18RewriteRule ^index\.php$ - [L]
19RewriteCond %{REQUEST_FILENAME} !-f
20RewriteCond %{REQUEST_FILENAME} !-d
21RewriteRule . /index.php [L]
22</IfModule>
23
24#AIOWPS_CUSTOM_RULES_END
25# END All In One WP Security