Router for Ecxod Projects
php composer.phar require nikic/fast-routecat .htaccess
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]
cat src/konst/K.php (example)
const ROUTEN = [
'root' => ['pfad' => '/', 'name' => 'Index', 'proto' => ['GET']],
'register' => ['pfad' => '/register.php', 'name' => 'Register', 'proto' => ['GET', 'POST']],
'authenticate' => ['pfad' => '/authenticate.php', 'name' => 'Authenticate', 'proto' => ['GET']],
];