43 lines
		
	
	
		
			854 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			854 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| # phpAdmin 后台管理 (admin-thinkphp-Layui2)
 | ||
| 
 | ||
| - [官网:http://www.yunzer.cn](http://www.yunzer.cn)
 | ||
| - [演示:admin-thinkphp-layui](admin-thinkphp-layui)
 | ||
| 
 | ||
| ## 一、介绍
 | ||
| 
 | ||
| - phpAdmin 后台管理
 | ||
| 
 | ||
| - [admin-thinkphp-layui]
 | ||
|   - 后端框架:Thinkphp6.1
 | ||
|   - Layui2.8
 | ||
| 
 | ||
| ## 二、安装教程
 | ||
| 
 | ||
| - [根据 Thinkphp6 安装](https://www.kancloud.cn/manual/thinkphp6_0/1037479)
 | ||
| - 伪静态
 | ||
| ```
 | ||
| location ~* (runtime|application)/{
 | ||
| 	return 403;
 | ||
| }
 | ||
| location / {
 | ||
| 	if (!-e $request_filename){
 | ||
| 		rewrite  ^(.*)$  /index.php?s=$1  last;   break;
 | ||
| 	}
 | ||
| }
 | ||
| ```
 | ||
| 
 | ||
| ## 三、使用说明
 | ||
| 
 | ||
| - 1、域名指向 public 目录下
 | ||
| - 2、后台管理系统访问网址:http://www.xxx.com/index.php/bews/index/index
 | ||
| 
 | ||
| ## 四、鸣谢
 | ||
| 
 | ||
| - [PHP 中文网](https://www.php.cn)
 | ||
| - [Thinkphp](http://www.thinkphp.cn)
 | ||
| - [Layui](https://layui.dev)
 | ||
| 
 | ||
| ## 五、技术支持
 | ||
| 
 | ||
| - QQ:357099073
 |