Thursday, July 29th 2010, 1:22pm UTC+2
You are not logged in.
|
|
PHP Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "/usr/XYZ">
# AddOutputFilterByType text/html text/plain text/xml
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI Multiviews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# [URL]http://httpd.apache.org/docs-2.0/mod/core.html#options[/URL]
# for more information.
#
Options Indexes FollowSymLinks
# Options Indexes Includes ExecCGI
#
# AllowOverride All
AllowOverride None
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
|
|
|
PHP Source code |
1 2 3 4 |
<LocationMatch "\.(php|php3|php4?)$">
Order allow,deny
Deny from all
</LocationMatch>
|