new pisilinux web sites

This commit is contained in:
Erkan IŞIK
2026-07-01 16:44:17 +03:00
commit b58488b586
21740 changed files with 2066209 additions and 0 deletions
+78
View File
@@ -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' => [
]
];