17 lines
216 B
PHP
17 lines
216 B
PHP
<?php
|
|
|
|
return [
|
|
'GET' => [
|
|
'/' => 'home.php',
|
|
'/about' => 'about.php',
|
|
],
|
|
/* Some Examples
|
|
'POST' => [
|
|
'/contact' => 'contact.php',
|
|
],
|
|
'DELETE' => [
|
|
'/api/todo' => 'delete_todo.php',
|
|
],
|
|
*/
|
|
];
|