源码简介
一款专为二次元爱好者定制的发卡商城源码,其特色在于纯正的二次元动漫元素设计,打造出与众不同的购物体验。此源码剔除了冗余功能和后台管理模块,保持了核心发卡功能的纯净性,用户可快速搭建起一个专注于虚拟商品销售的简约型线上商城。
源码截图
安装教程
PHP版本=>8.0 MySQL=>5.7
Nginx伪静态规则:
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
Windows IIS服务器环境,可以使用下面伪静态规则:
<rules>
<rule name="acg_rewrite" 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?s={R:1}"/>
</rule>
</rules>
- 配置完成后,访问你的首页,即可开始安装
- 安装完成后,后台地址是:
https://你的域名/admin
© 版权声明
THE END
请登录后查看评论内容