hutong / yaf-framework
Yaf 命名空间基础框架
Installs: 23
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
Type:project
Requires
- php: >=7.0.0
- hutong/ycore: dev-master
This package is auto-updated.
Last update: 2025-01-21 21:48:06 UTC
README
yaf命名空间框架
学习交流群
630730920
安装
composer create-project hutong/yaf-framework www dev-master
server {
listen 80;
server_name www.xxx.cn;
root /path/public;
index index.php;
charset utf-8;
location / {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?$1 last;
}
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}