fifths / php-router

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

php-route

nginx

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }
    use \Router\Router;
    Router::get('/', function () {
        echo 'Hello world!';
    });
    Router::dispatch();

About


Languages

Language:PHP 100.0%