<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>

<Files "wp-login.php">
    Order deny,allow
    Deny from all
    Allow from 174.96.0.0/12  TWC
    Allow from 71.64.0.0/12  TWC
    Allow from 98.24.0.0/13  TWC
    Allow from 65.0.0.0/12  Bellsouth
    Allow from 99.128.0.0/10  Bellsouth
    Allow from 98.16.0.0/13  Bellsouth
    Allow from 169.32.0.0/11  Windstrean
    Allow from 162.39.123.64/26  Windstrean
    Allow from 70.144.0.0/12  Windstrean
    Allow from 71.28.108.0/24  Windstream
    Allow from 71.31.64.0/19  Windstream
    Allow from 173.184.0.0/13  Windstream
    Allow from 24.224.64.0/18  MI Connection
    Allow from 108.192.0.0/10  ATT
    Allow from 23.112.0.0/12  ATT
    Allow from 68.120.0.0/13  ATT
</Files>

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>

# END WordPress

# Wordfence WAF
<IfModule mod_php5.c>
	php_value auto_prepend_file '/home/trimmer/public_html/blog/wordfence-waf.php'
</IfModule>
<IfModule mod_php7.c>
	php_value auto_prepend_file '/home/trimmer/public_html/blog/wordfence-waf.php'
</IfModule>
<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
