Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

基于thinkphp5.1框架和layui做的一个RBAC后台

License

NotificationsYou must be signed in to change notification settings

mrtwenty/zhao

Repository files navigation

基于thinkphp5.1框架和layui做的一个RBAC后台。

安装步骤

  1. git 拉取项目
  2. composer install
  3. 导入项目根目录下的数据库文件zhao.sql
  4. 编写一个.env文件,里面写上:
ENVIRONMENT=developmentDATABASE_HOST='127.0.0.1'DATABASE_USER=rootDATABASE_PWD=123456DATABASE_DB=zhaoAPP_DEBUG=1APP_TRACE=1
  1. 创建虚拟主机,web服务器nginx配置如下
server {    listen       80;    server_name  zhao.com;    root         "project path/public/";    autoindex    on;    index        index.php index.html index.htm;        location / {      if (!-e $request_filename) {        rewrite  ^(.*)$  /index.php?s=/$1  last;        break;       }    }        location  ~ [^/]\.php(/|$) {        fastcgi_split_path_info  ^(.+?\.php)(/.*)$;        if (!-f $document_root$fastcgi_script_name) {                return 404;        }        fastcgi_pass   127.0.0.1:9002;        fastcgi_index  index.php;        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;        fastcgi_param  PATH_INFO        $fastcgi_path_info;        fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;        include        fastcgi_params;    }}

项目相关的依赖包

包名介绍
topthink/frameworkthinkphp框架
topthink/think-captchathinkphp框架的验证码
zoujingli/ip2regionip地址库
naixiaoxin/think-wechat一个微信扩展包
aliyuncs/oss-sdk-php阿里云oss包
qiniu/php-sdk七牛云包
mrgoon/aliyun-sms阿里云短信包

image

About

基于thinkphp5.1框架和layui做的一个RBAC后台

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp