洪运源码

ShopWind电商系统v4.7

ShopWind是一款基于Yii2.0框架深度重构的B2B2C、O2O行业的电商系统软件,您可以轻松创建和发布属于自己品牌的专业的电商平台,进行全方位的品牌宣传和产品推广。ShopWind v3.x标准版开始走向开源,打造一款完全开源的电商系统,可以免费用于商业运营或者二次开发,免于商业版权的烦恼。v3.x商业版包含PC、手机H5、微商城、APP客户端(Andorid+iOS)、微信小程序、今日头条小程序等多端,其中PC端为开源免费项目,移动端为增值项目。ShopWind提供专业、快速、安全的底层软件设计和免费的更新升级服务,做好完善的开发文档和接口文档方便开发者在底层软件的基础上开发各种应用、模板、或者插件。

作为一款定位于电商领域的购物软件,ShopWind同样具备了电商系统软件该有的模块,如:商品模块、订单管理模块、登录模块、支付系统、短信系统、 营销系统(拼团、优惠券、秒杀、社区团购、搭配购、三级分销、满优惠、满包邮等)、资金管理系统(充值、提现、余额支付)、积分系统(积分充值、积分抵扣)、 退款模块、运费模板、评价系统等。我们今后也将不断丰富ShopWind生态,也欢迎广大开发者参与,贡献自己的代码。

运行环境

Nginx/Apache/IIS
PHP7.2+
MySQL5.6+

服务器
推荐阿里云服务器和宝塔服务器部署

Apache服务器伪静态代码:

<IfModule mod_rewrite.c>
Options +FollowSymLinks
IndexIgnore */*

RewriteEngine on

# if $showScriptName is false in UrlManager, do not allow accessing URLs with script name
RewriteRule ^index.php/ - [L,R=404]

# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# otherwise forward it to index.php
RewriteRule . index.php

RewriteRule \.svn\/ /404.html
RewriteRule \.git\/ /404.html
</IfModule>

nginx服务器伪静态代码:

location / {
  #Redirect everything that isn't a real file to index.php
  try_files $uri $uri/ /index.php$is_args$args;
}
#If you want a single domain name at the front and back ends
location /admin {
  try_files $uri $uri/ /admin/index.php$is_args$args;
}
location /mobile {
  try_files $uri $uri/ /mobile/index.php$is_args$args;
}


ShopWind电商系统下载地址

ShopWind电商系统v4.7 源码链接:https://www.hycodes.cn/shop/4659.html

下载说明:本站部分资源供学习交流使用,如商业用途,请购正版。

返回顶部