Server Side Includes .htaccess / General Guides
Using Server Side Includes, you can insert the contents of another file into the current one, meaning you only have to change this one included file and it's contents will change on every page on your site.
Popular Web Tricks .htaccess / General Guides
A really cool feature that web designers overlook is the use of the .htaccess file. Simply put, whenever you see a custom error page (404, 403, etc.), use server side includes, restrict IPs, load a default page, or do any host of events invisible to the user, you are probably going to be using .htaccess.
Introduction .htaccess / General Guides
A text file called .htaccess can be used to control web server (Apache) behavior for your web site. The other sections of this .htaccess tutorial deal with actual commands (called directives) which can be used.
It configures settings for the web server per directory (the one it is placed in) and subdirectories under it.
Creating Custom Error Messages in Apache .htaccess / Error Handling
The .htaccess file is a file found in Apache servers that allows you to manipulate the behaviour of the server. A very common use is to create custom error messages for server errors. Examples of such errors are "404 Not Found" (say when you click on a broken link), and the "500 Internal Server Error" (a script failed). Most hosts allow you to have your own .htaccess file, and so now we will look at only one of the things we can do with a custom .htaccess.
Create the File and Use it on Your Site .htaccess / General Guides
.htaccess is a file that you can create using Notepad in Windows (or any text editor) to add some additional functionality to your website and server. It is usually supported by all Unix/Linux web hosts which use the Apache server. This tutorial will help you create the file and use it on your site.
Introduction to .htaccess .htaccess / General Guides
.Htaccess is a small text file that control configuration aspects of an Apache web server. Most people are familiar with the .htaccess file in relation with the ability to restrict access to a directory via password protection. However, .htaccess can do a lot more than password protection. .Htaccess is an extremely powerful configuration tool that can customize the way your web site behaves and how your web server handles requests.
.htaccess Guide .htaccess / General Guides
A comprehensive guide to the Apache Web Server's .htaccess configuraiton file. Includes full tutorial covering error documents, password protection, visitor blocking, hot linking prevention techniques and more.
Using .htaccess in your Web Project .htaccess / General Guides
Apache web servers allow the use of a text file called .htaccess to control certain behaviours within a website. The .htaccess file contains a list of brief instructions which are referred to by the web server prior to responding to a web request.
Information about the .htaccess file .htaccess / General Guides
The .htaccess file is an ordinary text file that you can create using Notepad or any text editor and ftp it into your Web root directory. This file will contain the configuration statements (commands) to customize the Apache Web server software for your Web site.
Custom 404 Page Not Found Pages .htaccess / Error Handling
A cool trick you can entice your visitors with is custom error pages. When a page on your server is not found, your visitors will normally see their browser's default message such as "Page cannot be displayed." If you used a custom error page though, your visitors will see your page.