The Definitive Guide to htaccess Techniques: Do’s and Don’ts
- By Editorial
- Posted in PHP
- 64 comments
Of all the elements of web design and coding, htaccess can be one of the most intimidating. After all, it’s an incredibly powerful tool and one that has the potential to completely break your site if you’re not careful.
Below are a dozen basic htaccess techniques and tips to get you started. They’re not nearly as intimidating as many people expect, and if you study the code for a few minutes, I’m sure you’ll quickly grasp exactly how they work and why.
After that are a few bewares and don’ts for working with htaccess to help keep you out of trouble, and some more resources for further working with htaccess.

12 Basic htaccess Tips:
1. Create a custom error page.
.htaccess on a Linux Apache server makes it easy to create your own custom error pages. Just create your custom error page files and then add this code to your .htaccess file:
ErrorDocument 401 /401.php ErrorDocument 403 /403.php ErrorDocument 404 /404.php ErrorDocument 500 /500.php
(Obviously you should replace the “/500.php” or whatever with your own file path and name.)
2. Prevent directory browsing.
If you don’t include an index file in a directory, visitors can browse the directory itself. But preventing that is as easy as adding a single line to your .htaccess file:
Options All -Indexes
3. Set the default page of each directory.
If you don’t want to use an index page in each directory, you can set the default page visited when someone reaches (like an about page or a page offering the newest content) that directory by adding this:
DirectoryIndex news.html
(And of course you’d replace the “news.html” bit with whatever you want to use as the default.)
4. Set up a 301 redirect.
If you move around the structure of your site and need to redirect some old URLs to their new locations, the following bit of code will do so for you:
Redirect 301 /original/filename.html http://domain.com/updated/filename.html
5. Compress file output with GZIP.
You can add the following code to your htaccess file to compress all of your JavaScript, CSS and HTML files using GZIP.
<IfModule mod_gzip.c> mod_gzip_on Yes mod_gzip_dechunk Yes mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$ mod_gzip_item_include handler ^cgi-script$ mod_gzip_item_include mime ^text\.* mod_gzip_item_include mime ^application/x-javascript.* mod_gzip_item_exclude mime ^image\.* mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.* </IfModule>

6. Redirect to a secure https connection
If you want to redirect your entire site to a secure https connection, use the following:
RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
7. Block script execution.
You can stop scripts in certain languages from running with this:
Options -ExecCGI AddHandler cgi-script .pl .py .php .jsp. htm .shtml .sh .asp .cgi
Just replace the types of scripts you want to block.
8. Force a file to download with a “Save As” prompt.
If you want to force someone to download a file instead of opening it in their browser, use this code:
AddType application/octet-stream .doc .mov .avi .pdf .xls .mp4
9. Restrict file upload limits for PHP.
You can restrict the maximum file size for uploading in PHP, as well as the maximum execution time. Just add this:
php_value upload_max_filesize 10M php_value post_max_size 10M php_value max_execution_time 200 php_value max_input_time 200
Line one specifies the maximum file size for uploading; line two is the maximum size for post data; line three is the maximum time in seconds a script can run before it’s terminated; and line four is the maximum amount of time in seconds a script is allowed to parse input data.
10. Enable File Caching.
Enabling file caching can greatly improve your site’s performance and speed. Use the following code to set up caching (changing the file types and time values to suit your site’s needs):
#cache html and htm files for one day <FilesMatch ".(html|htm)$"> Header set Cache-Control "max-age=43200" </FilesMatch> #cache css, javascript and text files for one week <FilesMatch ".(js|css|txt)$"> Header set Cache-Control "max-age=604800" </FilesMatch> #cache flash and images for one month <FilesMatch ".(flv|swf|ico|gif|jpg|jpeg|png)$"> Header set Cache-Control "max-age=2592000" </FilesMatch> #disable cache for script files <FilesMatch "\.(pl|php|cgi|spl|scgi|fcgi)$"> Header unset Cache-Control </FilesMatch>
(Time shown for max-age is in seconds.)
11. Protect your site from hotlinking.
The last thing you want is for those stealing your content to also be able to embed the images hosted on your server in their posts. It takes up your bandwidth and can quickly get expensive. Here’s a way to block hotlinking within htaccess:
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://([ -a-z0-9] \.)?domain\.com [NC]
RewriteRule \.(gif|jpe?g|png)$ - [F,NC,L]
(Of course you’ll want to replace the domain\.com with your own domain name.)
12. Disguise your file types.
You can disguise all of your file types by making them appear as PHP files. Just insert this snippet in:
ForceType application/x-httpd-php

8 Common htaccess Mistakes and Don’ts:
- Be careful of spelling- .htaccess is not forgiving of spelling errors.
- htaccess is case sensitive. If something is shown in the examples with a capital letter, make sure it’s capitalized in your htaccess file.
- Consider your caching needs carefully before setting it up. If your site is almost entirely static, you can set longer cache times. If your site changes daily, make sure you adapt which files will cache for how long. There’s nothing worse as a visitor than coming back to a site thinking there’s been an update and not seeing it.
- Don’t forget to comment out your notes within the file. This is done by adding a # before the comment line.
- Always test your site immediately after making any changes to your htaccess file. One mistyped character could make the difference between your site working and being down for hours before you realize what’s happened.
- On that note, always make sure you backup your htaccess file before making any changes. That way, if there is a problem, you can easily swap back in the old file.
- Make sure any essential htaccess functions you’ve included are cross-browser compatible. There are certain things some browsers just won’t support (one example is with certain methods for forcing file downloads).
- Remember when protecting a web directory with htaccess, that unless it’s restricted to https access, the password could be sniffed (as your authentication will be done over an un-secure connection).
- 21 Very Useful htaccess Tips and Tricks
- 5 htaccess Tricks Every Webmaster Should Know
- 16 Useful .htaccess Tricks and Hacks For Web Developers
- Stupid htaccess Tricks
- Using htaccess Files for Pretty URLS
joyoge designers' bookmark, 10 August 2009
useful techniques, thank you so much..
Oliver Nassar, 10 August 2009
Great post. Rewrite rules are a little more advanced, but would be cool to see a post about them.
Joffrey, 10 August 2009
Great, maybe the best guide I’ve ever seen.
Thanks! :)
Matt, 10 August 2009
Excellent post. Great to have all these useful htaccess techniques in one place with clear instructions.
Alex, 10 August 2009
Great tips!
Something to keep in mind is that each of of these tips can be used in the regular Apache configuration file. The syntax is the same.
One thing to keep in mind when thinking about the do’s and dont’s is that whenever possible add these changes to the Apache config file instead of a .htaccess file.
Additional overhead is introduced by enabling the .htaccess file.
Jeff Kee, 10 August 2009
Well organized, well written, easy to understand – arguably the best quick guide for .htaccess I’ve seen.
Marie Poulin, 10 August 2009
Where were you 6 months ago??
Seriously, really useful stuff,
much appreciated!
Gregory Raby, 10 August 2009
Much needed thanks, although enabling GZIP via Htaccess would deserve a little more details. 1&1 users won’t go far with the above example.
shin, 10 August 2009
Question to Cameron.
In tip 11, you wrote ‘(Of course you’ll want to replace the domain\.com with your own domain name.)’
Do I need to replace like this? ‘http://www.mywebsite\.com’
Do I need http://www. ?
Thanks for the article. I learned something new today. :-)
Cameron Chapman, 10 August 2009
You would just change the domain.\com to yoursite\.com (leaving in the “\.”) without the “http://www.” (because that’s already included in that line of code). So it would look like this:
http://( -a-z0-9] \.)?noupe\.com [NC]
You can also do it like this:
http://(www\.)?noupe\.com [NC]
Mike Stenger, 11 August 2009
Yeah, same thing I’m trying to figure out. Changed “domain” to mine, added it and then got 500 error so that way definitely doesn’t work.
Helen, 05 September 2009
I have another way to prevent hotlinking which enables Google and Bing to hotlink, because most of the tips you can find on the web usually don’t work. Normally, Google has no problem with anti-hotlinking, but Bing has. Yahoo more often than not can hotlink, but sometimes not.
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?mydomain\.com/ [NC]
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?google\.(.+)/ [NC]
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?(.*\.)?google\.(.+)/ [NC]
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?bing\.(.+)/ [NC]
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?(.*\.)?bing\.(.+)/ [NC]
RewriteCond %{HTTP_REFERER} !^$
RewriteRule .*\.(jpe?g|gif|png)$ /error/copyright.bmp [L]
Important: The replacement-image must not have the one of the forbidden suffixes. if you normally use .jpg, you can use .jpe or .bmp.
mahesh Prasad, 10 August 2009
gr8 post!
thanks…
Illi.Pro, 10 August 2009
Hey! Nice techniques but i wanna know if you can show me something that i want a lot.. it’s about to show a maintenance page.. the idea is that i create a file (www.myblog.com/maintenance.html) and via .htaccess i make that when someone visit any post (www.mypage.com/somepostinmyblog.html) it will show the maintenance page but the important thing is that in the addres bar, the url doesn’t show my maintenance.html page url, instead, it still showing the url of the post (www.mypage.com/somepostinmyblog.html) but with the content of (www.mypage.com/maintenance.html).. hope you understand me and help me :)!
Cameron Chapman, 10 August 2009
I’m honestly not sure about this one. I would start by searching for tips on URL masking. It might be possible to do this with mod_rewrite. I know it can be done, but I’m not sure if htaccess is the best way to go about it or if there’s a better solution. It’s not something I’ve ever needed to do before.
Jamie Allsop, 10 August 2009
These are some really useful techniques and are well written and easy to understand. Thanks for the great article.
Mujeeb Khumawala, 10 August 2009
This definately Rocks!
Thanks.
Connie, 10 August 2009
Unfortunately I cannot print this page.
Print Preview in Firefox 3.0.13 only shows 2 pages….
Connie, 10 August 2009
in Opera 9.6.2 it is ok
will check if a Firefox-Update will help me ;=)
ahmet alp balkan, 10 August 2009
It is great, thanks.
Susie, 10 August 2009
This is a great resource, thanks so much! its given me some great ideas on things I need to do.
Dinakar, 10 August 2009
Great Article for newbies !! thank you very much.. !! keep it up
KubX, 10 August 2009
Thank you ;)
Jef, 10 August 2009
Nice tips, I will look to try some! Thanks
Ted Goas, 10 August 2009
Wow, this is an absolutely fantastic collection of commands that designers can reference. Great explanations! Thanks!
skullpat, 10 August 2009
Nice list, good to keep it on a second hand ;)
Thanks !!
Jack Humphrey, 10 August 2009
I don’t believe I’ve ever seen all this in one place before! Bookmarked!
Ahmed, 10 August 2009
Nice Info Collection Thanks for Sharing it
Marden, 04 May 2011
This forum needed skhanig up and you?ve just done that. Great post!
Jasmine, 10 August 2009
Quite impressed! All I googled wasn’t as useful as this article :D
Lisa, 11 August 2009
This is awesome! Great resource. Thank you for all of this. Definitely bookmarking.
Dan Sargeant, 11 August 2009
Great reference list. Thanks. Bookmarked!
Web design glossop, 11 August 2009
Great article thanks for sharing – #5. Compress file output with GZIP is a great tip I wasnt aware of this.
D, 11 August 2009
You can also block a range of IP addresses from visiting your site. This comes in handy when people in China, for example, only come to your site to steal the design/code/articles.whatever.
For my portfolio site it’s a no brainer. Do people in China, India, Brazil, etc really need to see my US web design portfolio site? Probably not.
This site helps generate an htaccess deny list. I’m sure there are ways around it but it helps.
http://www.countryipblocks.net/
Mike Cherim, 11 August 2009
Outstanding overview. Thanks.
Vishal, 12 August 2009
Hi there,
Seems like [code]
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text\.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
[/code]
Does not seem to work. I tried adding these lines in .htaccess, but no success. Any idea on what I am missing?
Thanks.
Susheel Chandradhas, 19 August 2009
Vishal,
If you’re on a shared hosting service, and your service provider has disabled the mod_gzip apache module, then it won’t work.
Webhostright, 12 August 2009
Thanks, anything htaccess is something that i always deal with very slowly, usually worried about making a mess of something so i tend to read through things a few times.
Thanks for this info, very useful and practical stuff too.
Bob, 12 August 2009
BTW a small errata;
Options All -Indexes
is a don’t; mixing +/- options and non-+/- options is evil syntax, see https://issues.apache.org/bugzilla/show_bug.cgi?id=33078
Setting MIME-typs to invoke hanlers (ForceType application/x-httpd-php) is bad coding, too. You should use SetHandler.
RewriteCond %{HTTPS} !on
Using the lex. equal (strcmp) is more efficient than a regular expression:
RewriteCond %{HTTPS} !=on
(and others)
if you’d like to match a period and not any character, you should use
And of course, .htaccess files are always a don’t, if one has access to the httpd.conf
Geoserv, 13 August 2009
Excellent article. I find the gzip trick actually slows my site down as opposed to speeding it up.
alexpts, 14 August 2009
It is great, thanks ))
Maher Salam, 16 August 2009
Thanks for this great tips .
I’m having a problem with the caching method , I knew this technique before reading this article and I’m using it in my website , but the visitors can’t see the changes when I try to update something in the css or the javascripts of my website , so how can I flush the cache ??
Jason, 18 August 2009
That’s an excellent guide for anyone. Thanks!
Driveways, 20 August 2009
thanks for sharing a great article :)
Paul Hancox, 24 August 2009
Thanks for the useful guide. I have fiddled out with htaccess before but all this extra stuff is useful to know.
Me, 24 August 2009
I intend to bookmark this page therefore I add my own tricks :)
Prevent a txt file (or any file, just change txt to something else) to be loaded
Order allow,deny
Deny from all
password protect one file :
AuthType Basic
AuthName “logged”
AuthUserFile /whateverrep/.htpasswd
require valid-user
dont forget to add a .htpasswd with a proprer login/pasword inside
odin, 01 September 2009
Regarding (#12) ForceType, you might want to limit it by Directory or Files block so you don’t parse files as PHP that you didn’t mean to (e.g., images).
Regarding (#11) note that some security software and firewalls will block or change the referrer and deny legitimate access to your content. You need to weigh the cost/benefit of this solution to your specific application.
The “High Performance Web Sites” O’Reilly book is a good reference for more info on these topics and more. For the more advanced topics (rewrites, compression, etc.), I would highly recommend fully understanding the impact (client, server, SEO, etc.) and technology before implementing on any public site.
affordable web design, 05 September 2009
A few things there I forgot about. “logging into the FTP promptly”. Thanks for the article!
Timo Körber, 08 September 2009
Thanks for this. I’ve been looking for something like that for so long. ;)
test, 25 November 2009
Harjot Singh Chopra, 27 January 2010
Thanks a lot dear. These are very useful.
Panakj, 15 March 2010
much appreciated!
Tanzeel Niazi, 24 March 2010
Some times my website blackouts, giving me “500 Internal Server Error”, Googled it but didn’t find a proper solution on .htaccess Dos and Dont’s. Thanks, we’ll definitely keep these tips in mind.
Harsha M V, 03 June 2010
awesomw tips.. thanks for the tips
chris, 11 June 2010
Thanks,
I gladly clicked on all your banners ;-)
Louise, 21 August 2010
Thanks for the hotlinking tip. We were just about to create some rude images for the naughty people hotlinking from one of our sites!
himmu, 03 September 2010
This is some advance info and helps me learn lille ahead of what i was thinking all these days. Might ask my programmer to check this article so that he can get some good knowledge about the above mentioned tips n tricks.
Sandeepya, 02 October 2010
really useful..:)
caraga, 12 October 2010
this is what im looking for!
zaira, 20 December 2010
These are some really useful techniques and are well written and easy to understand. Thanks for the great article.
Arron Hillyer, 04 February 2011
Generally I do not learn post on blogs, but I wish to say that this write-up very pressured me to take a look at and do so! Your writing style has been surprised me. Thank you, quite nice article. Executive Elite, 18a Greycoat Gardens, Greycoat Street, London, SW1P 2QA, 028 2088 0135
Jatin, 30 April 2011
OMG, htaccess :( I am definitely no good at writing htaccess rules. Great tutorial BTW, it helped me clear some of my doubts.
Carol, 12 May 2011
The rule to force download doesn’t seem to work. I tried on Firefox and IE9 and I can still open the file on the browser.
ronaldo, 10 June 2011
Thanks for the post, was an interesting read.