osCommerce / oscommerce

osCommerce Online Merchant v3.x

This URL has Read+Write access

santssoft (author)
Thu Apr 02 01:19:32 -0700 2009
haraldpdl (committer)
Thu Apr 02 07:18:55 -0700 2009
oscommerce / .htaccess
100644 36 lines (31 sloc) 0.829 kb
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
# $Id$
#
# This is used with Apache WebServers
#
# For this to work, you must include the parameter 'Options' to
# the AllowOverride configuration
#
# Example:
#
# <Directory "/usr/local/apache/htdocs">
# AllowOverride Options
# </Directory>
#
# 'All' with also work. (This configuration is in the
# apache/conf/httpd.conf file)
 
# The following makes adjustments to the SSL protocol for Internet
# Explorer browsers
 
<IfModule mod_setenvif.c>
  <IfDefine SSL>
    SetEnvIf User-Agent ".*MSIE.*" \
             nokeepalive ssl-unclean-shutdown \
             downgrade-1.0 force-response-1.0
  </IfDefine>
</IfModule>
 
# Fix certain PHP values
# (commented out by default to prevent errors occuring on certain
# servers)
 
#<IfModule mod_php4.c>
# php_value session.use_trans_sid 0
# php_value magic_quotes_gpc 0
#</IfModule>