Last active
May 30, 2018 16:19
-
-
Save aamnah/6142128c92ac6d1a4f188efdb0a71958 to your computer and use it in GitHub Desktop.
.htaccess for WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Secure File Permissions | |
# https://codex.wordpress.org/Changing_File_Permissions#.htaccess_permissions | |
# 600 -rw------- /home/user/wp-config.php | |
# 604 -rw----r-- /home/user/cgi-bin/.htaccess | |
# 600 -rw------- /home/user/cgi-bin/php.ini | |
# 711 -rwx--x--x /home/user/cgi-bin/php.cgi | |
# 100 ---x------ /home/user/cgi-bin/php5.cgi | |
# BEGIN Increases Max Upload Size | |
php_value upload_max_filesize 64M | |
php_value post_max_size 64M | |
php_value max_execution_time 300 | |
php_value max_input_time 300 | |
# END Increases Max Upload Size | |
# BEGIN WordPress | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.php$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule . /index.php [L] | |
</IfModule> | |
# END WordPress | |
# SECURING wp-config.php | |
# http://codex.wordpress.org/Hardening_WordPress#Securing_wp-config.php | |
<files wp-config.php> | |
order allow,deny | |
deny from all | |
</files> | |
# SECURING wp-includes | |
# http://codex.wordpress.org/Hardening_WordPress#Securing_wp-includes | |
# Block the include-only files. | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^wp-admin/includes/ - [F,L] | |
RewriteRule !^wp-includes/ - [S=3] | |
RewriteRule ^wp-includes/[^/]+\.php$ - [F,L] | |
RewriteRule ^wp-includes/js/tinymce/langs/.+\.php - [F,L] | |
RewriteRule ^wp-includes/theme-compat/ - [F,L] | |
</IfModule> | |
# SECURING xmlrpc.php | |
# https://blog.sucuri.net/2015/10/brute-force-amplification-attacks-against-wordpress-xmlrpc.html | |
# Prevent Brute forcing via xmlrpc.php by allowing ONLY localhost access xmlrpc.php | |
# (some other plugin using xmlrpc e.g. Yoast might have an issue, check the log files, read up) | |
<files xmlrpc.php=""> | |
Order Deny,Allow | |
Deny from all | |
Allow from 192.0.64.0/18 | |
Satisfy All | |
ErrorDocument 403 http://127.0.0.1/ | |
</files> | |
# Stop Author Scanning | |
# Stop attempts to find out username by going to “/?author=1” | |
RewriteCond %{REQUEST_URI} !^/wp-admin [NC] | |
RewriteCond %{QUERY_STRING} author=\d | |
RewriteRule ^ /? [L,R=301] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment