API管理平台源码v1.2插图

1.数据库信息配置在路径【config/database.php】文件中
2.导入根目录下的【www.gongzizx.com.sql】数据库文件
3.设置网站运行目录为根目录【public】目录
后台地址 /admin/login.html
账户 admin 密码 123456
nginx伪静态
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php;
}
}
apache伪静态
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L,E=PATH_INFO:?$1]
</IfModule>
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。