Linux服务器环境搭建与配置指南
【系统环境】
操作系统:Linux
管理面板:宝塔
运行环境:Nginx 1.16.1 + PHP 5.6 + MySQL 5.5
【核心配置】
1. 数据库配置文件路径
/database.php
2. Nginx伪静态规则
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
3. 后台管理入口
/admin
【访问权限】
• 管理账户:需通过授权获取
• 用户账户:需通过授权获取
解压密码: qq112233aa
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容