fifths/php-router

There is no license information available for the latest version (dev-master) of this package.

dev-master 2017-06-21 14:37 UTC

This package is auto-updated.

Last update: 2024-04-15 03:23:20 UTC


README

nginx

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