<Files "wp-login.php">
    Order deny,allow
    Deny from all
    Allow from 174.96.0.0/12  TWC
    Allow from 172.72.0.0/14  TWC
    Allow from 71.64.0.0/12  TWC
    Allow from 98.24.0.0/13  TWC
    Allow from 65.184.0.0/13  TWC
    Allow from 74.218.0.0/15  TWC
    Allow from 69.132.0.0/14  TWC
    Allow from 70.92.0.0/14  TWC
    Allow from 108.169.128.0/18  TWC
</Files>

<Files "xmlrpc.php">
    Order deny,allow
    Deny from all
    Allow from 162.144.93.25
</Files>

# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>

# END WordPress


# Wordfence WAF
<Files ".user.ini">
<IfModule mod_authz_core.c>
	Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
	Order deny,allow
	Deny from all
</IfModule>
</Files>

# END Wordfence WAF
