TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?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',
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user