异次元发卡网糖果小屋|糖果论坛|糖果博客网站源码论坛糖果小屋|糖果论坛|糖果博客糖果广场糖果小屋|糖果论坛|糖果博客糖果小屋-为萌新站长打造最好的技术论坛

异次元发卡网

F{NAV$ZZH`P92Q7}[ZPP[5A

 

环境要求

异次元店铺系统对环境也有一定的要求,但是不限制于只在服务器安装,你可以在虚拟主机以及各种操作系统上都可以完美安装。

在安装程序之前,检查你的服务器或者虚拟主机是否支持以下环境:

  • PHP >= 8.0
  • Mysql >= 5.6

 

开始安装

可以点击这里进行下载最新版:

 

  • Apache伪静态规则:无需配置,规则就是程序根目录的.htaccess文件
  • Nginx伪静态规则:
location ~* (runtime|application)/{
	return 403;
}
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

请登录后发表评论