Files
web-site/Projects/Wiki/Config/Routing.php
T
2026-07-01 16:44:17 +03:00

20 lines
483 B
PHP

<?php return
[
'openController' => 'Wiki',
'openFunction' => 'main',
'show404' => 'show404',
'requestMethods' =>
[
'page' => '',
'disallowMethods' => [],
'allowMethods' => []
],
'patternType' => 'classic',
'changeUri' => [
'category/(.*)' => 'Wiki/category/$1',
'content/(.*)' => 'Wiki/content/$1',
'preview/(.*)' => 'Wiki/preview/$1',
'search' => 'Wiki/search',
]
];