Quick Search:

View

Revision:

Diff

Diff from 1 to:

Annotations

Annotate by Age | Author | Mixed | None
/fisheye/browse/osCommerce/tags/oscommerce-3.0a3/admin/.htaccess

Annotated File View

hpdl
1
1 # $Id: .htaccess,v 1.2 2003/06/19 23:40:38 hpdl Exp $
2 #
3 # This is used with Apache WebServers
4 #
5 # For this to work, you must include the parameter 'Options' to
6 # the AllowOverride configuration
7 #
8 # Example:
9 #
10 # <Directory "/usr/local/apache/htdocs">
11 #   AllowOverride Options
12 # </Directory>
13 #
14 # 'All' with also work. (This configuration is in the
15 # apache/conf/httpd.conf file)
16
17 # The following makes adjustments to the SSL protocol for Internet
18 # Explorer browsers
19
20 <IfModule mod_setenvif.c>
21   <IfDefine SSL>
22     SetEnvIf User-Agent ".*MSIE.*" \
23              nokeepalive ssl-unclean-shutdown \
24              downgrade-1.0 force-response-1.0
25   </IfDefine>
26 </IfModule>
27
28 # Fix certain PHP values
29
30 #<IfModule mod_php4.c>
31 #  php_value session.use_trans_sid 0
32 #  php_value register_globals 1
33 #</IfModule>