summaryrefslogtreecommitdiff
path: root/.htaccess
blob: c4e32bebaba2adb730c9f368ccdbb239b6456119 (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#
# Apache/PHP/site settings:
#

# Archive feature:
<Files archive>
  ForceType application/x-httpd-php
</Files>

# Protect .inc files:
#  .inc files can be read from the web so make sure we keep it 
#  away from the casual prying eyes.  Especially `config.inc'.
<Files *.inc>
  order deny,allow
  deny from all
</Files>

# Protect CVS directories:
<Files *CVS>
  order deny,allow
  deny from all
</Files>

# Protect theme directories:
<Files *themes>
  order deny,allow
  deny from all
</Files>

# Customized server error messages:
ErrorDocument 400 /error.php
ErrorDocument 402 /error.php
ErrorDocument 403 /error.php
ErrorDocument 404 /error.php
ErrorDocument 500 /error.php

# Overload PHP variables:
<IfModule mod_php4.c>
   php_value php_register_globals    1
   php_value track_vars              1
   php_value magic_quotes_gpc        1
   php_value magic_quotes_runtime    0
   php_value magic_quotes_sybase     0
   php_value session.name            DROPID
   php_value session.auto_start      1  
   php_value session.cookie_lifetime 2000000
   php_value session.gc_maxlifetime  2000000
   php_value session.cache_expire    200000
</IfModule>