mattice
|
151
|
1
|
# $Id: .htaccess 151 2005-08-02 14:33:25Z mattice $
|
hpdl
|
1
|
2
|
#
|
|
3
|
# This is used with Apache WebServers
|
|
4
|
# The following blocks direct HTTP requests in this directory recursively
|
|
5
|
#
|
|
6
|
# For this to work, you must include the parameter 'Limit' to the AllowOverride configuration
|
|
7
|
#
|
|
8
|
# Example:
|
|
9
|
#
|
|
10
|
#<Directory "/usr/local/apache/htdocs">
|
|
11
|
# AllowOverride Limit
|
|
12
|
#
|
|
13
|
# 'All' with also work. (This configuration is in your apache/conf/httpd.conf file)
|
|
14
|
#
|
|
15
|
# This does not affect PHP include/require functions
|
|
16
|
#
|
|
17
|
# Example: http://server/catalog/includes/application_top.php will not work
|
|
18
|
|
|
19
|
<Files *.php>
|
|
20
|
Order Deny,Allow
|
|
21
|
Deny from all
|
|
22
|
</Files>
|