Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rehiy/web-utils
轻量级 Web 工具箱
https://github.com/rehiy/web-utils
Last synced: about 1 month ago
JSON representation
轻量级 Web 工具箱
- Host: GitHub
- URL: https://github.com/rehiy/web-utils
- Owner: rehiy
- Created: 2023-12-01T12:56:13.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2023-12-01T13:07:17.000Z (12 months ago)
- Last Synced: 2023-12-01T14:26:41.931Z (12 months ago)
- Language: HTML
- Homepage:
- Size: 1.49 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
}
```