正在显示
1 个修改的文件
包含
71 行增加
和
0 行删除
README.md
0 → 100644
1 | +#Fastadmin | ||
2 | +Fastadmin是一个基于Yaf(PHP框架)+Bootstrap(UI框架)的极速通用后台管理系统 | ||
3 | + | ||
4 | +##功能特性 | ||
5 | + | ||
6 | +* 完善的`RBAC`权限管理系统 | ||
7 | + * 支持无限级父子级继承权限 | ||
8 | + * 根据目录和控制器结构`全自动生成`权限节点 | ||
9 | +* Bootstrap响应式操作,支持手机平板 | ||
10 | +* PJAX无刷新操作 | ||
11 | +* 支持数据库表一键生成控制器和模板 | ||
12 | +* 支持多语言 | ||
13 | + | ||
14 | +##编译YAF | ||
15 | +``` | ||
16 | +$/path/to/phpize | ||
17 | +$./configure --with-php-config=/path/to/php-config | ||
18 | +$make && make install | ||
19 | +``` | ||
20 | + | ||
21 | +##YAF文档 | ||
22 | +http://www.php.net/manual/en/book.yaf.php | ||
23 | + | ||
24 | +##伪静态规则 | ||
25 | + | ||
26 | +###Apache | ||
27 | +``` | ||
28 | +#.htaccess | ||
29 | +RewriteEngine On | ||
30 | +RewriteCond %{REQUEST_FILENAME} !-f | ||
31 | +RewriteCond %{REQUEST_FILENAME} !-d | ||
32 | +RewriteRule .* index.php | ||
33 | +``` | ||
34 | + | ||
35 | +###Nginx | ||
36 | +``` | ||
37 | +location / { | ||
38 | + root /var/www/yoursitepath; | ||
39 | + index index.php index.html index.htm; | ||
40 | + if (!-e $request_filename){ | ||
41 | + rewrite ^/(.*)$ /index.php/$1 last; | ||
42 | + } | ||
43 | +} | ||
44 | +请注意在Nginx下需要增加额外的配置,避免相关隐私信息暴露 | ||
45 | +location ~ /(application|conf|data|system) { | ||
46 | + deny all; | ||
47 | + return 403; | ||
48 | +} | ||
49 | +``` | ||
50 | + | ||
51 | +##Bootstrap组件 | ||
52 | +http://demo.fastadmin.net/demo.php | ||
53 | + | ||
54 | +##问题反馈 | ||
55 | +> 在使用中有任何问题,欢迎反馈给我,可以用以下联系方式跟我交流 | ||
56 | +* Email: (karsonzhang#163.com, 把#换成@) | ||
57 | +* weibo: [@karsonzhang](http://weibo.com/karsonzhang) | ||
58 | +* Github: https://github.com/karsonzhang/fastadmin | ||
59 | +* Git@OSC: https://git.oschina.com/karson/fastadmin | ||
60 | + | ||
61 | +##捐助 | ||
62 | +[Paypal](https://www.paypal.com/) | ||
63 | +[支付宝](https://www.alipay.com/) | ||
64 | + | ||
65 | +##感激 | ||
66 | +感谢以下的项目,排名不分先后 | ||
67 | + | ||
68 | +* [YAF](https://github.com/laruence/yaf) | ||
69 | +* [Bootstrap](http://getbootstrap.com/) | ||
70 | +* [jQuery](http://jquery.com) | ||
71 | +* [Datatables](http://datatables.net) |
-
请 注册 或 登录 后发表评论