功能介绍
用户管理、后台管理、独立控制面板(暂时用kangle的前端模版)
1、简单的一个用户管理系统
2、在线下单、购买、开通主机
4、基本的邀请奖励、兑换奖励
6、使用SMTP发信模块找回密码(更多邮件提醒功能正在构架)
8、全站强制路由,安全性更高
9、简易用户组功能(更多用户组功能正在构架)
修改Application/database.php中数据库信息
将运行目录设置为/public
Apche:
<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L] </IfModule>
Nginx:
location / { if (!-e $request_filename){ rewrite ^(.*)$ /index.php?s=$1 last; break; } }
IIS:
<rewrite> <rules> <rule name=”OrgPage” stopProcessing=”true”> <match URL=”^(.*)$” /> <conditions logicalGrouping=”MatchAll”> <add input=”{HTTP_HOST}” pattern=”^(.*)$” /> <add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true” /> <add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true” /> </conditions> <action type=”Rewrite” URL=”index.php/{R:1}” /> </rule> </rules> </rewrite>
这个源码我搭建过了可以玩玩
感谢您的来访,获取更多精彩文章请收藏本站。

暂无评论内容