gaucho / router

v1.0.0 2023-04-18 19:03 UTC

README

基于 Pinatra(Sinatra 的 PHP 版本)代码的简单 PHP 路由器 (版本 PHP 的 roteador do Sinatra)

安装

composer require gaucho/router

使用

<?php
require 'vendor/autoload.php';
get('/',function(){
	print 'hello world';
});
get('{name}',function($name){
	code(200);
	print 'hello '.$name;
});

Apache

将以下代码添加到 .htaccess 文件中

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>