‪TYPO3CMS  ‪main
RequestMiddlewares.php
Go to the documentation of this file.
1 <?php
12 return [
13  'core' => [
15  'typo3/cms-core/verify-host-header' => [
16  'target' => \TYPO3\CMS\Core\Middleware\VerifyHostHeader::class,
17  ],
19  'typo3/cms-core/normalized-params-attribute' => [
20  'target' => \TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute::class,
21  'after' => [
22  'typo3/cms-core/verify-host-header',
23  ],
24  ],
26  'typo3/cms-core/response-propagation' => [
27  'target' => \TYPO3\CMS\Core\Middleware\ResponsePropagation::class,
28  'after' => [
29  'typo3/cms-core/verify-host-header',
30  ],
31  ],
32  ],
33 ];