官方文档地址:https://faka.wiki
GitHub:https://github.com/lizhipay/acg-faka
个人发卡源码,发卡系统,二次元发卡系统,二次元发卡源码,发卡程序,动漫发卡,PHP发卡源码,异次元发卡
环境要求
PHP >= 8.0
mysql >= 5.7
通过github,或者gitee,将源代码下载至你的服务器或者虚拟主机,然后配置伪静态。
如果你访问不了github,可以点击这里进行下载最新版:acgshop-latest.zip
Apache伪静态规则:无需配置,规则就是程序根目录的.htaccess文件
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>
配置完伪静态后,访问你的网站首页,即可进行安装。
安装完成后,后台地址是:http://你的域名/admin