Quick Search:

View

Revision:

Diff

Diff from 151 to:

Annotations

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

Annotated File View

mattice
151
1 # $Id: .htaccess 151 2005-08-02 14:33:25Z mattice $
hpdl
1
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 # (commented out by default to prevent errors occuring on certain
30 # servers)
31
32 #<IfModule mod_php4.c>
33 #  php_value session.use_trans_sid 0
34 #  php_value magic_quotes_gpc 0
35 #</IfModule>