#
#   Version 2.1
# 	created 2009-05-13 by Tec
#
#
#   1. prevent listing of folders
Options  -Indexes
#
#
#   2. Redirect client enquiries to search.php
RewriteEngine on
RewriteRule ^search\.html$ ./search.php
#
#
#   3. Always start with this file
DirectoryIndex search.php
#
#
#   4. Prevent delivery of .htacess file 
<FilesMatch "^.htaccess" >
deny from all
</FilesMatch>
#
#
#   5. Enable Apache to use php includes
AddType application/x-httpd-php .htm .html
#
#
#   6. Unset Magic quotes
php_flag magic_quotes_gpc off 
#   End of file