Security update to Drupal 8.4.6
[yaffs-website] / web / .htaccess
1 #
2 # Apache/PHP/Drupal settings:
3 #
4
5 # Protect files and directories from prying eyes.
6 <FilesMatch "\.(engine|inc|install|make|module|profile|po|sh|.*sql|theme|twig|tpl(\.php)?|xtmpl|yml)(~|\.sw[op]|\.bak|\.orig|\.save)?$|^(\.(?!well-known).*|Entries.*|Repository|Root|Tag|Template|composer\.(json|lock))$|^#.*#$|\.php(~|\.sw[op]|\.bak|\.orig|\.save)$">
7   <IfModule mod_authz_core.c>
8     Require all denied
9   </IfModule>
10   <IfModule !mod_authz_core.c>
11     Order allow,deny
12   </IfModule>
13 </FilesMatch>
14
15 # Don't show directory listings for URLs which map to a directory.
16 Options -Indexes
17
18 # Set the default handler.
19 DirectoryIndex index.php index.html index.htm
20
21 # Add correct encoding for SVGZ.
22 AddType image/svg+xml svg svgz
23 AddEncoding gzip svgz
24
25 # Most of the following PHP settings cannot be changed at runtime. See
26 # sites/default/default.settings.php and
27 # Drupal\Core\DrupalKernel::bootEnvironment() for settings that can be
28 # changed at runtime.
29
30 # PHP 5, Apache 1 and 2.
31 <IfModule mod_php5.c>
32   php_value assert.active                   0
33   php_flag session.auto_start               off
34   php_value mbstring.http_input             pass
35   php_value mbstring.http_output            pass
36   php_flag mbstring.encoding_translation    off
37   # PHP 5.6 has deprecated $HTTP_RAW_POST_DATA and produces warnings if this is
38   # not set.
39   php_value always_populate_raw_post_data   -1
40 </IfModule>
41
42 # Requires mod_expires to be enabled.
43 <IfModule mod_expires.c>
44   # Enable expirations.
45   ExpiresActive On
46
47   # Cache all files for 2 weeks after access (A).
48   ExpiresDefault A1209600
49
50   <FilesMatch \.php$>
51     # Do not allow PHP scripts to be cached unless they explicitly send cache
52     # headers themselves. Otherwise all scripts would have to overwrite the
53     # headers set by mod_expires if they want another caching behavior. This may
54     # fail if an error occurs early in the bootstrap process, and it may cause
55     # problems if a non-Drupal PHP file is installed in a subdirectory.
56     ExpiresActive Off
57   </FilesMatch>
58 </IfModule>
59
60 # Set a fallback resource if mod_rewrite is not enabled. This allows Drupal to
61 # work without clean URLs. This requires Apache version >= 2.2.16. If Drupal is
62 # not accessed by the top level URL (i.e.: http://example.com/drupal/ instead of
63 # http://example.com/), the path to index.php will need to be adjusted.
64 <IfModule !mod_rewrite.c>
65   FallbackResource /index.php
66 </IfModule>
67
68 # Various rewrite rules.
69 <IfModule mod_rewrite.c>
70   RewriteEngine on
71
72   # Set "protossl" to "s" if we were accessed via https://.  This is used later
73   # if you enable "www." stripping or enforcement, in order to ensure that
74   # you don't bounce between http and https.
75   RewriteRule ^ - [E=protossl]
76   RewriteCond %{HTTPS} on
77   RewriteRule ^ - [E=protossl:s]
78
79   # Make sure Authorization HTTP header is available to PHP
80   # even when running as CGI or FastCGI.
81   RewriteRule ^ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
82
83   # Block access to "hidden" directories whose names begin with a period. This
84   # includes directories used by version control systems such as Subversion or
85   # Git to store control files. Files whose names begin with a period, as well
86   # as the control files used by CVS, are protected by the FilesMatch directive
87   # above.
88   #
89   # NOTE: This only works when mod_rewrite is loaded. Without mod_rewrite, it is
90   # not possible to block access to entire directories from .htaccess because
91   # <DirectoryMatch> is not allowed here.
92   #
93   # If you do not have mod_rewrite installed, you should remove these
94   # directories from your webroot or otherwise protect them from being
95   # downloaded.
96   RewriteRule "/\.|^\.(?!well-known/)" - [F]
97
98   # If your site can be accessed both with and without the 'www.' prefix, you
99   # can use one of the following settings to redirect users to your preferred
100   # URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:
101   #
102   # To redirect all users to access the site WITH the 'www.' prefix,
103   # (http://example.com/foo will be redirected to http://www.example.com/foo)
104   # uncomment the following:
105   # RewriteCond %{HTTP_HOST} .
106   # RewriteCond %{HTTP_HOST} !^www\. [NC]
107   # RewriteRule ^ http%{ENV:protossl}://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
108   #
109   # To redirect all users to access the site WITHOUT the 'www.' prefix,
110   # (http://www.example.com/foo will be redirected to http://example.com/foo)
111   # uncomment the following:
112   # RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
113   # RewriteRule ^ http%{ENV:protossl}://%1%{REQUEST_URI} [L,R=301]
114
115   # Modify the RewriteBase if you are using Drupal in a subdirectory or in a
116   # VirtualDocumentRoot and the rewrite rules are not working properly.
117   # For example if your site is at http://example.com/drupal uncomment and
118   # modify the following line:
119   # RewriteBase /drupal
120   #
121   # If your site is running in a VirtualDocumentRoot at http://example.com/,
122   # uncomment the following line:
123   # RewriteBase /
124
125   # Redirect common PHP files to their new locations.
126   RewriteCond %{REQUEST_URI} ^(.*)?/(install.php) [OR]
127   RewriteCond %{REQUEST_URI} ^(.*)?/(rebuild.php)
128   RewriteCond %{REQUEST_URI} !core
129   RewriteRule ^ %1/core/%2 [L,QSA,R=301]
130
131   # Rewrite install.php during installation to see if mod_rewrite is working
132   RewriteRule ^core/install.php core/install.php?rewrite=ok [QSA,L]
133
134   # Pass all requests not referring directly to files in the filesystem to
135   # index.php.
136   RewriteCond %{REQUEST_FILENAME} !-f
137   RewriteCond %{REQUEST_FILENAME} !-d
138   RewriteCond %{REQUEST_URI} !=/favicon.ico
139   RewriteRule ^ index.php [L]
140
141   # For security reasons, deny access to other PHP files on public sites.
142   # Note: The following URI conditions are not anchored at the start (^),
143   # because Drupal may be located in a subdirectory. To further improve
144   # security, you can replace '!/' with '!^/'.
145   # Allow access to PHP files in /core (like authorize.php or install.php):
146   RewriteCond %{REQUEST_URI} !/core/[^/]*\.php$
147   # Allow access to test-specific PHP files:
148   RewriteCond %{REQUEST_URI} !/core/modules/system/tests/https?.php
149   # Allow access to Statistics module's custom front controller.
150   # Copy and adapt this rule to directly execute PHP files in contributed or
151   # custom modules or to run another PHP application in the same directory.
152   RewriteCond %{REQUEST_URI} !/core/modules/statistics/statistics.php$
153   # Deny access to any other PHP files that do not match the rules above.
154   # Specifically, disallow autoload.php from being served directly.
155   RewriteRule "^(.+/.*|autoload)\.php($|/)" - [F]
156
157   # Rules to correctly serve gzip compressed CSS and JS files.
158   # Requires both mod_rewrite and mod_headers to be enabled.
159   <IfModule mod_headers.c>
160     # Serve gzip compressed CSS files if they exist and the client accepts gzip.
161     RewriteCond %{HTTP:Accept-encoding} gzip
162     RewriteCond %{REQUEST_FILENAME}\.gz -s
163     RewriteRule ^(.*)\.css $1\.css\.gz [QSA]
164
165     # Serve gzip compressed JS files if they exist and the client accepts gzip.
166     RewriteCond %{HTTP:Accept-encoding} gzip
167     RewriteCond %{REQUEST_FILENAME}\.gz -s
168     RewriteRule ^(.*)\.js $1\.js\.gz [QSA]
169
170     # Serve correct content types, and prevent mod_deflate double gzip.
171     RewriteRule \.css\.gz$ - [T=text/css,E=no-gzip:1]
172     RewriteRule \.js\.gz$ - [T=text/javascript,E=no-gzip:1]
173
174     <FilesMatch "(\.js\.gz|\.css\.gz)$">
175       # Serve correct encoding type.
176       Header set Content-Encoding gzip
177       # Force proxies to cache gzipped & non-gzipped css/js files separately.
178       Header append Vary Accept-Encoding
179     </FilesMatch>
180   </IfModule>
181 </IfModule>
182
183 # Various header fixes.
184 <IfModule mod_headers.c>
185   # Disable content sniffing, since it's an attack vector.
186   Header always set X-Content-Type-Options nosniff
187   # Disable Proxy header, since it's an attack vector.
188   RequestHeader unset Proxy
189 </IfModule>