Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rehiy/web-utils

轻量级 Web 工具箱
https://github.com/rehiy/web-utils

Last synced: about 1 month ago
JSON representation

轻量级 Web 工具箱

Awesome Lists containing this project

README

        

# web-utils

轻量级 Web 工具箱,无数据库,无框架依赖。

## 示例站点

- [https://apps.opentdp.org](https://apps.opentdp.org)

## Nginx 伪静态

```nginx
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
```