27 lines
800 B
PHP
27 lines
800 B
PHP
<?php
|
|
|
|
use TYPO3\CMS\Install\Controller\EntryPointRedirectController;
|
|
use TYPO3\CMS\Install\Controller\ServerResponseCheckController;
|
|
|
|
/**
|
|
* Defines routes for Install Tool being called from backend context.
|
|
*/
|
|
|
|
return [
|
|
'install.server-response-check.host' => [
|
|
'access' => 'public',
|
|
'path' => '/install/server-response-check/host',
|
|
'target' => ServerResponseCheckController::class . '::checkHostAction',
|
|
],
|
|
'install.redirect' => [
|
|
'access' => 'public',
|
|
'path' => '/install',
|
|
'target' => EntryPointRedirectController::class . '::redirectAction',
|
|
],
|
|
'install.php.redirect' => [
|
|
'access' => 'public',
|
|
'path' => '/install.php',
|
|
'target' => EntryPointRedirectController::class . '::redirectAction',
|
|
],
|
|
];
|