.htaccess Basics
Tuesday, February 5th, 2013 - 11:41 PM - General
A .htaccess file is a special file used to control certain aspects of your website. With .htaccess you can:
- Password protect directories
- Point domains and subdomains to specific directories
- Block traffic to your website
- and more
When you place a .htaccess file in a directory, it will affect that directory and all directories below that one.
To create a .htaccess file:
- Create an empty text file (named htaccess.txt) in Notepad
- Add the contents of your .htaccess file
- Upload the file to your package in the appropriate directory for what you want to do
- Rename the file .htaccess
- Note – You can also save the file directly in NotePad as “.htaccess” by putting quotes around the name during the save. But if you do that be sure your FTP program will still upload it in ASCII format.
Some of the simple “one liners” are:
- To disallow the showing of default index pages Options -indexes
- To turn indexes back on in a lower directory Options +indexes
- To redirect requests to a document or directory Redirect /olddirectory http://domain.com/newdirectory/
- Have your HTML (.htm) pages processed as PHP (.php) pages AddHandler application/x-httpd-php .php .htm
- To use a different startup page DirectoryIndex filename.htm
- To force all files of a certain type to download rather than open <files *.pdf>ForceType applicaton/octet-stream</files>
- To use a custom error page ErrorDocument 404 /errorpage.htm
The error codes you can use, and what they mean, are listed below:- 401 – Not Authorized – example is a failed htaccess/htpasswd request
- 403 – Forbidden – example is requesting a default directory index if Options -indexes
- 404 – Not Found – example is an invalid file name
- 500 – Internal Server Error – example is an invalid htaccess file
Additional specific .htaccess functiionality can be found in many of the Tips & Scripts topics on this page.