A to Z of WordPress .htaccess Hacks
The .htaccess file allows you to easily improve your blog’s security, reduce bandwith and increase usability. In this post we’re going to look at 26 .htaccess hacks, from A to Z. If you enjoy this post then please grab the WPShout RSS feed!
Remember the golden rule:
Always have a backup!
A – WP- Admin
Your can restrict access to wp-admin by IP:
order deny,allow allow from a.b.c.d # This is your static IP deny from all
Source – BlogSecurity.net
B – Blacklist
One of the most important things you can do with .htaccess is blacklist IP addresses. You can do so with the following code:
<Limit GET POST PUT> order allow,deny allow from all deny from 123.456.789 </LIMIT>
Source – Perishable Press
C – WP-Config Protection
Your wp-config file contains your database name, your database username and your database password. In other words, you’ll want to keep it secure.
# protect wpconfig.php <files wp-config.php> order allow,deny deny from all </files>
Source – Josiah Cole
D – Disable Directory Browsing
# disable directory browsing Options All -Indexes
Source- Josiah Cole
E – Explanation
I bet if I asked you to explain exactly what .htaccess is, you’d struggle to tell me exactly. To be honest, until I wrote this, I wasn’t totally sure. Wikipedia explains in a nice, jargon free way:
.htaccess (hypertext access) is the default name of directory-level configuration files that allow for decentralized management of configuration when placed inside the web tree.
The Wikipedia article then goes on, with some examples of common usage:
- Authorization, authentication
- .htaccess files are often used to specify the security restrictions for the particular directory, hence the filename “access.” The .htaccess file is often accompanied by a .htpasswd file which stores valid usernames and their passwords. [3]
- Customized error responses
- Changing the page that is shown when a server-side error occurs, for example HTTP 404 Not Found
- Rewriting URLs
- Servers often use .htaccess to rewrite long, overly comprehensive URLs to shorter and more memorable ones.
- Cache Control
- .htaccess files allow a server to control User agent caching used by web browsers to reduce bandwidth usage, server load, and perceived lag.
F – Feedburner
Feedburner is a blogger’s best friend. Trouble is, directing your feed to it is a bit of a pain. The solution: a .htaccess hack of course!
# temp redirect wordpress content feeds to feedburner <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_USER_AGENT} !FeedBurner [NC] RewriteCond %{HTTP_USER_AGENT} !FeedValidator [NC] RewriteRule ^feed/?([_0-9a-z-]+)?/?$ http://feeds.feedburner.com/nometech [R=302,NC,L] </IfModule>
Source – Perishable Press
G – Get an RSS Feed on a static page
This is quite complicated, so check out the source below. In a nutshell it is a way of getting round using Javascript (because it doesn’t do the SEO any good).
Source – adityaspeaks.com
H – Disable hotlinking
Hotlinking. According to Wikipedia, also known as “leeching, piggy-backing, direct linking, offsite image grabs and bandwidth theft”. In other words it is using an image from another site. If people do it to you, it’ll use up your bandwith. You can stop it with the .htaccess hack below.
#disable hotlinking of images with forbidden or custom image option RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com/.*$ [NC] #RewriteRule \.(gif|jpg)$ - [F] RewriteRule \.(gif|jpg)$ http://www.yourdomain.com/stealingisbad.gif [R,L]
Source – Josiah Cole
I – Important!
Yeah, ok, I got a bit desperate trying to find something that begins with ‘I’ :P. But, that doesn’t mean this isn’t useful; it’s very important!
Backup. Always, always make sure you have a backup to hand; the slightest mistake will be fatal.
J – Jauntily show the admin’s email address in error message
SetEnv SERVER_ADMIN [email protected]
K – Keep RSS ‘content thieves’ away
It isn’t nice when people steal your content. One of the ways ‘content thieves’ scrape content from sites is by simply using your RSS feed. If you’ve got the scraper’s IP address (which is very easy to do; Google it) then you can use your .htaccess file to block the scraper. The code below redirects a site taking your feed back to another feed (ie their feed). Replace the IP on line two with the offending site’s and the feed on line three with the offending site’s feed.
RewriteEngine on RewriteCond %{REMOTE_ADDR} ^69.16.226.12 RewriteRule ^(.*)$ http://newfeedurl.com/feed
Source – Seo Black Hat
L – Limiting number of simultaneous connections
To limit the number of simultaneous connections to a directory or your entire site, use the below line. If you place it in a directory other than the root directory, then it will limit the connections to that directory and its sub-directories only. Placing it in htaccess file of root directory will implement it for entire site.
MaxClients < number-of-connections>
Source – Pix.l|ne
M – Maintenance
It doesn’t matter what the reason is, at some point in your life you’ll probably want to make maintenance page. Replace “/maintenance.html” with whatever the url of your maintenance page is and put your own IP address on line three.
RewriteEngine on RewriteCond %{REQUEST_URI} !/maintenance.html$ RewriteCond %{REMOTE_ADDR} !^123\.123\.123\.123 RewriteRule $ /maintenance.html [R=302,L]
Source – CatsWhoCode/Woueb.net
N – Deny no referer requests [stop spam comments!]
Slightly simpler than the spam-stopping solution under ‘S’, what this hack does is utilise the fact that most spammes use bots coming from ‘nowhere’. The hack checks to see where a comment is coming from, and if it is coming from ‘nowhere’ then it blocks it. Simple.
RewriteEngine On RewriteCond %{REQUEST_METHOD} POST RewriteCond %{REQUEST_URI} .wp-comments-post\.php* RewriteCond %{HTTP_REFERER} !.*yourblog.com.* [OR] RewriteCond %{HTTP_USER_AGENT} ^$ RewriteRule (.*) ^http://%{REMOTE_ADDR}/$ [R=301,L]
Source – WPRecipes
O – Force files when opening to ‘save as’
If you’re offering files for download then the hack below will be very useful – it forces files to save as instead of opening or streaming.
AddType application/octet-stream .avi .mpg .mov .pdf .xls .mp4
Source – AskApache
P – Protect your .htaccess file.
After you’ve spent all that time protecting your blog from .htaccess attack, the last thing you want to do is leave your .htaccess file itself open to attack!The hack below prevents external access to any file with .hta (or any case insensitive variation). Place the code below in your domain’s root .htaccess file.
# STRONG HTACCESS PROTECTION</code> <Files ~ "^.*\.([Hh][Tt][Aa])"> order allow,deny deny from all satisfy all </Files>
Source: Perishable Press
Q – Quicken your site’s loading time by caching
If you’re paying for what bandwith you use, this article can save you cash!
Source – Samaxes
R – Redirect to other pages on your site
RedirectMatch 301 ^/blog/.*$ http://domain.tld/target.html
Source – Perishable Press
S – Spam!
.htaccess is great for stopping comment spam, and Jeff over at Perishable Press has put together a huge blacklist you can copy and paste that should stop you getting so much spam! Link.
T – Set the timezone of the server
The hack below lets you set the timezone of the server:
SetEnv TZ America/Indianapolis
Source – AskApache
U – Remove /category/ from your category URL
Having /category/ in a category URL seems a bit useless. How do I get rid of it, I hear you cry! A .htaccess hack, of course!
RedirectMatch 301 ^/category/(.+)$ http://www.askapache.com/$1 # OR RewriteRule ^category/(.+)$ http://www.askapache.com/$1 [R=301,L]
Source: AskApache
V – Valiantly automatically fix URL spelling mistakes
Yep. I got desperate. Well what .htaccess trick can you think of that starts with ‘v’?
This neat trick will auto-correct simple URL spelling mistakes
<IfModule mod_speling.c> CheckSpelling On </IfModule>
Source – Vortex Mind
W – Redirect from http://www.whatever to http://whatever
Using a 301 (permanent) redirect, you can move all visitors to http://www.yoursite to http://yoursite
# permanently redirect from www domain to non-www domain RewriteEngine on Options +FollowSymLinks RewriteCond %{HTTP_HOST} ^www\.domain\.tld$ [NC] RewriteRule ^(.*)$ http://domain.tld/$1 [R=301,L]
Source: Stupid htaccess tricks
X – Make your wp-login.php page xenophobic
Xenophobic: “an intense fear or dislike of forigners or strangers”
I think it is quite appropriate to call your wp-login page xenophobic if you install this hack; it won’t let anyone access it apart from yourself!
<Files wp-login.php> Order deny,allow Deny from All Allow from 123.456.789.0 </Files>
Source – Reaper-X
Y – Easily rename your .htaccess file
What do you do if your server doesn’t like the .htaccess file format? Rename the .htaccess file! You can rename it to whatever you like, using the code below:
# rename htaccess files AccessFileName ht.access
Source – Perishable Press
Z – Say zygote in your .htaccess file
So you want to be able to put the word ‘zygote’ in your .htaccess file? You’ll be needing to make a comment. Comments are really easy to do, just use # at the beginning of a line, which tells the server to ignore the line.
# see - this is a comment - you can only use letters and numbers and - and _ That is why there are no commas
Additional reading
http://blogsecurity.net/wordpress/article-210607
http://www.askapache.com/htaccess/apache-htaccess.html#htaccess-code-examples
http://perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/
http://seoblackhat.com/2006/07/14/ip-delivery-to-stop-rss-content-thieves/
http://www.catswhocode.com/blog/10-awesome-htaccess-hacks-for-wordpress