项目地址:https://github.com/netcccyun/dnsmgr
环境要求
PHP8.0,mysql5.7
开始搭建
宝塔添加网站和数据库,将安装的下载到网站目录里面https://github.com/netcccyun/dnsmgr/releases,解压完成后

设置运行目录

设置伪静态
location ~* (runtime|application)/ {
return 403;
}
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}访问域名安装就行了