Skip to content
This repository was archived by the owner on Mar 27, 2019. It is now read-only.

Commit 509d3cb

Browse files
author
Andreas Mautz
committed
[RELEASE] Magento Community 1.9.4.0
1 parent 4cc4cc8 commit 509d3cb

File tree

14,450 files changed

+2623743
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

14,450 files changed

+2623743
-4
lines changed

.htaccess

+249
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,249 @@
1+
############################################
2+
## uncomment these lines for CGI mode
3+
## make sure to specify the correct cgi php binary file name
4+
## it might be /cgi-bin/php-cgi
5+
6+
# Action php5-cgi /cgi-bin/php5-cgi
7+
# AddHandler php5-cgi .php
8+
9+
############################################
10+
## GoDaddy specific options
11+
12+
# Options -MultiViews
13+
14+
## you might also need to add this line to php.ini
15+
## cgi.fix_pathinfo = 1
16+
## if it still doesn't work, rename php.ini to php5.ini
17+
18+
############################################
19+
## this line is specific for 1and1 hosting
20+
21+
#AddType x-mapp-php5 .php
22+
#AddHandler x-mapp-php5 .php
23+
24+
############################################
25+
## default index file
26+
27+
DirectoryIndex index.php
28+
29+
<IfModule mod_php5.c>
30+
31+
############################################
32+
## adjust memory limit
33+
34+
# php_value memory_limit 64M
35+
php_value memory_limit 256M
36+
php_value max_execution_time 18000
37+
38+
############################################
39+
## disable magic quotes for php request vars
40+
41+
php_flag magic_quotes_gpc off
42+
43+
############################################
44+
## disable automatic session start
45+
## before autoload was initialized
46+
47+
php_flag session.auto_start off
48+
49+
############################################
50+
## enable resulting html compression
51+
52+
#php_flag zlib.output_compression on
53+
54+
###########################################
55+
# disable user agent verification to not break multiple image upload
56+
57+
php_flag suhosin.session.cryptua off
58+
59+
###########################################
60+
# turn off compatibility with PHP4 when dealing with objects
61+
62+
php_flag zend.ze1_compatibility_mode Off
63+
64+
</IfModule>
65+
66+
<IfModule mod_security.c>
67+
###########################################
68+
# disable POST processing to not break multiple image upload
69+
70+
SecFilterEngine Off
71+
SecFilterScanPOST Off
72+
</IfModule>
73+
74+
<IfModule mod_deflate.c>
75+
76+
############################################
77+
## enable apache served files compression
78+
## http://developer.yahoo.com/performance/rules.html#gzip
79+
80+
# Insert filter on all content
81+
###SetOutputFilter DEFLATE
82+
# Insert filter on selected content types only
83+
#AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript
84+
85+
# Netscape 4.x has some problems...
86+
#BrowserMatch ^Mozilla/4 gzip-only-text/html
87+
88+
# Netscape 4.06-4.08 have some more problems
89+
#BrowserMatch ^Mozilla/4\.0[678] no-gzip
90+
91+
# MSIE masquerades as Netscape, but it is fine
92+
#BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
93+
94+
# Don't compress images
95+
#SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
96+
97+
# Make sure proxies don't deliver the wrong content
98+
#Header append Vary User-Agent env=!dont-vary
99+
100+
</IfModule>
101+
102+
<IfModule mod_ssl.c>
103+
104+
############################################
105+
## make HTTPS env vars available for CGI mode
106+
107+
SSLOptions StdEnvVars
108+
109+
</IfModule>
110+
111+
<IfModule mod_rewrite.c>
112+
113+
############################################
114+
## enable rewrites
115+
116+
Options +FollowSymLinks
117+
RewriteEngine on
118+
119+
############################################
120+
## you can put here your magento root folder
121+
## path relative to web root
122+
123+
#RewriteBase /magento/
124+
125+
############################################
126+
## uncomment next line to enable light API calls processing
127+
128+
# RewriteRule ^api/([a-z][0-9a-z_]+)/?$ api.php?type=$1 [QSA,L]
129+
130+
############################################
131+
## rewrite API2 calls to api.php (by now it is REST only)
132+
133+
RewriteRule ^api/rest api.php?type=rest [QSA,L]
134+
135+
############################################
136+
## workaround for HTTP authorization
137+
## in CGI environment
138+
139+
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
140+
141+
############################################
142+
## TRACE and TRACK HTTP methods disabled to prevent XSS attacks
143+
144+
RewriteCond %{REQUEST_METHOD} ^TRAC[EK]
145+
RewriteRule .* - [L,R=405]
146+
147+
<IfModule mod_setenvif.c>
148+
<IfModule mod_headers.c>
149+
150+
############################################
151+
# X-Content-Type-Options: nosniff disable content-type sniffing on some browsers.
152+
Header set X-Content-Type-Options: nosniff
153+
154+
############################################
155+
# This header forces to enables the Cross-site scripting (XSS) filter in browsers (if disabled)
156+
BrowserMatch \bMSIE\s8 ie8
157+
Header set X-XSS-Protection: "1; mode=block" env=!ie8
158+
159+
</IfModule>
160+
</IfModule>
161+
162+
############################################
163+
## redirect for mobile user agents
164+
165+
#RewriteCond %{REQUEST_URI} !^/mobiledirectoryhere/.*$
166+
#RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
167+
#RewriteRule ^(.*)$ /mobiledirectoryhere/ [L,R=302]
168+
169+
############################################
170+
## always send 404 on missing files in these folders
171+
172+
RewriteCond %{REQUEST_URI} !^/(media|skin|js)/
173+
174+
############################################
175+
## never rewrite for existing files, directories and links
176+
177+
RewriteCond %{REQUEST_FILENAME} !-f
178+
RewriteCond %{REQUEST_FILENAME} !-d
179+
RewriteCond %{REQUEST_FILENAME} !-l
180+
181+
############################################
182+
## rewrite everything else to index.php
183+
184+
RewriteRule .* index.php [L]
185+
186+
</IfModule>
187+
188+
189+
############################################
190+
## Prevent character encoding issues from server overrides
191+
## If you still have problems, use the second line instead
192+
193+
AddDefaultCharset Off
194+
#AddDefaultCharset UTF-8
195+
196+
<IfModule mod_expires.c>
197+
198+
############################################
199+
## Add default Expires header
200+
## http://developer.yahoo.com/performance/rules.html#expires
201+
202+
ExpiresDefault "access plus 1 year"
203+
204+
</IfModule>
205+
206+
############################################
207+
## By default allow all access
208+
209+
Order allow,deny
210+
Allow from all
211+
212+
###########################################
213+
## Deny access to release notes to prevent disclosure of the installed Magento version
214+
215+
<Files RELEASE_NOTES.txt>
216+
order allow,deny
217+
deny from all
218+
</Files>
219+
220+
############################################
221+
## If running in cluster environment, uncomment this
222+
## http://developer.yahoo.com/performance/rules.html#etags
223+
224+
#FileETag none
225+
226+
###########################################
227+
## Deny access to cron.php
228+
<Files cron.php>
229+
230+
############################################
231+
## uncomment next lines to enable cron access with base HTTP authorization
232+
## http://httpd.apache.org/docs/2.2/howto/auth.html
233+
##
234+
## Warning: .htpasswd file should be placed somewhere not accessible from the web.
235+
## This is so that folks cannot download the password file.
236+
## For example, if your documents are served out of /usr/local/apache/htdocs
237+
## you might want to put the password file(s) in /usr/local/apache/.
238+
239+
#AuthName "Cron auth"
240+
#AuthUserFile ../.htpasswd
241+
#AuthType basic
242+
#Require valid-user
243+
244+
############################################
245+
246+
Order allow,deny
247+
Deny from all
248+
249+
</Files>

0 commit comments

Comments
 (0)