###########################################################################
#  visible/.htaccess    2005 Oct 30    svillee                            #
#                                                                         #
#  Galt Escrow Agency                                                     #
#                                                                         #
#  This software is in the public domain.                                 #
#                                                                         #
#  This file contains Apache directives that are specific to the visible  #
#  directory.                                                             #
###########################################################################

#  A browser request for the visible directory itself should go to index.php.

DirectoryIndex index.php

#  Configure some PHP flags that can't be set via ini_set.

<IfModule mod_php4.c>
  #  for Apache 1.3

  php_flag magic_quotes_gpc      off
  php_flag register_globals      off
  php_flag session.auto_start    off
  php_flag session.use_trans_sid off
</IfModule>

<IfModule sapi_apache2.c>
  #  for Apache 2

  php_flag magic_quotes_gpc      off
  php_flag register_globals      off
  php_flag session.auto_start    off
  php_flag session.use_trans_sid off
</IfModule>
