无为API管控系统由PHP+MySQL构建,开发人员:WPBKJ
相关功能正在开发中
WPBKJ: QQ:64345171 Email:[email protected]
在服务器面板或使用PHP Server完成站点配置
注意:由于本程序在rewrite配置后可更好表现,请使用Nginx/Apache + PHP 便于配置rewrite
rewrite配置:
Nginx Rewrite:
location / {
index index.html index.php;
if (-f $request_filename/index.html) {
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php) {
rewrite (.*) $1/index.php;
}
if (!-f $request_filename) {
rewrite (.*) /index.php;
}
}
Apache Rewrite:
RewriteRule ^(.*) $1/index.html
RewriteRule ^(.*) $1/index.php
RewriteRule ^(.*) index.php
上述配置完成后直接访问网站首页进行数据库,网站默认配置等相关设置即可
安装完后由于功能上不完善,本程序先预制了一个1-100随机数api,可供用户体验功能
文件地址:/user/module/rand.php
链接:
开启rewrite:/api/rand.api
未开启erwrite:/index.php/api/rand.api
返回示例:
{"status":"successfull","result":67}