new pisilinux web sites
This commit is contained in:
@@ -0,0 +1,78 @@
|
||||
<?php return
|
||||
[
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Open Controller
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Default boot controller.
|
||||
|
|
||||
*/
|
||||
|
||||
'openController' => 'Home',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Open Function
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| It is the default method of operation of the controller.
|
||||
|
|
||||
*/
|
||||
|
||||
'openFunction' => 'main',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Show 404
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Forwards the invalid request to the specified URI.
|
||||
|
|
||||
*/
|
||||
|
||||
'show404' => 'show404',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Request Methods
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Which URI specifies which request methods are valid or invalid.
|
||||
|
|
||||
*/
|
||||
|
||||
'requestMethods' =>
|
||||
[
|
||||
'page' => '',
|
||||
'disallowMethods' => [],
|
||||
'allowMethods' => []
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pattern Type
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Regex type for route.
|
||||
|
|
||||
*/
|
||||
|
||||
'patternType' => 'classic',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Change URI
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Used to create a route. ['new regex' => 'old uri']
|
||||
|
|
||||
*/
|
||||
|
||||
'changeUri' => [
|
||||
|
||||
|
||||
|
||||
|
||||
]
|
||||
];
|
||||
Reference in New Issue
Block a user