开源Thinkphp宅音乐html5在线音乐播放器
开源Thinkphp宅音乐html5在线音乐播放器PHP MySQL音乐播放器源码免费下载
依赖composer php 5.6+ mysql 5.5+
导入数据库脚本,脚本位置extend/database/
修改数据库信息:config/database.php
启动项目
添加public为web根目录
若为apache服务器则默认伪静态,
nginx伪静态
location / {
index index.htm index.html index.php;
#访问路径的文件不存在则重写URL转交给ThinkPHP处理
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?s=$1 last;
break;
}
}
视频安装教程:https://www.bilibili.com/video/av46476706