# new_adm **Repository Path**: baixiantao/new_adm ## Basic Information - **Project Name**: new_adm - **Description**: tp6后台管理+tp6+workerman在线聊天 - **Primary Language**: PHP - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 4 - **Forks**: 2 - **Created**: 2022-07-20 - **Last Updated**: 2025-11-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: TP6后台框架, PHP8 ## README ThinkPHP 6.0 =============== ##简介 简单的tp6后台,可用于所有的php项目,实现了权限设置和菜单管理,其他的随意添加 实现功能: 1. 权限设置 - 菜单列表 - 权限组 - 管理员 运行环境 ------ > php版本:php8 > *** > MySQL版本:8.0 数据库是跟目录下的 tp6.sql > *** > 后台账号: admin 123456 ### _部署时首先使用`composer update`更新项目依赖_ ##nginx伪静态 ```md if (!-e $request_filename) { rewrite ^/index.php(.*)$ index.php?s=/$1 last; rewrite ^(.*)$ /index.php?s=/$1 last; break; } ``` ##Apache伪静态 ```md Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?$1 [QSA,PT,L] ``` ##延伸开发 这是一个基础版本的,后期会不断添加一些新的功能,使它变得更加强大