dsxwk/fastapp

framework ORM

Maintainers

Details

github.com/dsxwk/fastapp

Source

Issues

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:project

v1.4.0 2022-06-09 13:58 UTC

This package is auto-updated.

Last update: 2024-04-09 17:59:02 UTC


README

#安装

composer create-project dsxwk/fastapp

#Nginx rewrite 配置

location / {
    if (!-e $request_filename) {
    rewrite ^/(.*)$ /index.php/$1  last;
    break;
    }
}

#访问

127.0.0.1/应用名称/控制器/方法 默认: 127.0.0.1/index/index/index