1 Star 0 Fork 1.1K

狂飙的蜗牛 / Niushop开源商城V5 Dev开发版(全开源)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
安装必读.md 650 Bytes
一键复制 编辑 原始数据 按行查看 历史
全栈小学生 提交于 2022-09-06 16:50 . 安装必读

推荐阿里云服务器配置

输入图片说明

环境要求

Nignx/Apache
PHP  7.4 
MySQL 5.6~8.0
Redis 支持

伪静态配置

Nginx

location / {
   if (!-e $request_filename) { 
     rewrite  ^(.*)$  /index.php/$1  last;
     break;
   }
}

Apache

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
  RewriteEngine on RewriteCond % !^$
</IfModule>
PHP
1
https://gitee.com/lwl817/niushop_b2c_v5_dev.git
git@gitee.com:lwl817/niushop_b2c_v5_dev.git
lwl817
niushop_b2c_v5_dev
Niushop开源商城V5 Dev开发版(全开源)
master

搜索帮助