ecxod/router

为 Ecxod 项目设计的简单路由器

1.0.4 2024-07-30 22:35 UTC

This package is auto-updated.

Last update: 2024-09-30 23:00:37 UTC


README

用于 Ecxod 项目的路由器

php composer.phar require nikic/fast-route

查看 .htaccess 文件

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]

查看 src/konst/K.php(示例)

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']],
];