处理请求和响应的库

1.2 2021-01-24 03:31 UTC

This package is not auto-updated.

Last update: 2024-09-29 20:44:52 UTC


README

nginx 网络服务器的配置

添加您的项目

示例

<?PHP
// /location/index.php:
$api = new Api();
$api->processApi();
?>

修改您的 nginx 配置

location = /api {
    rewrite ^(.*)$ "/location/index.php";
}

location ~ /api/ {
    rewrite /api/([\._0-9a-zA-Z]+)/?([\._0-9a-zA-Z]+)/?[.*]?/?[.*]? /location/index.php?kind=$2%23$1;
}