最新云EC在线商城系统V1.3开源版源码 附详细安装教程
云EC系统安装基本要求:
1、PHP5.5版本以上,推荐PHP7.0
2、MYSQL5.0版本以上
3、支持rewrite伪静态规则
4、支持pdo_mysql连接模式
伪静态规则,配置完需要重启web服务器才会生效
APACHE环境下:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\.html$ /index.php?p=$1&%{QUERY_STRING} [L]
nginx环境下规则
rewrite ^/view/([^\.]*).html$ /index.php last;
rewrite ^/([^\.]*).html$ /index.php?p=$1 last;
rewrite ^/([^\.]*)/$ /index.php?p=$1 last;
rewrite ^/(.*).php$ /index.php last;
IIS 7环境, 将下面代码保存为web.config 放到网站根目录
<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”yunec”>
<match url=”(.*).html” ignoreCase=”true” negate=”false” />
<action type=”Rewrite” url=”index.php?p={R:1}” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
安装步骤:
1、解压后,上传 upload 里的所有文件到服务器空间,必须是根目录。不能是 http://域名/xxx/
2、访问你的网址 http://域名/ 进行安装
3、进入后台更新缓存 后台地址:http://域名/admin.html
文章附件
常见问题FAQ
- 链接地址失效了怎么办?
- 例如蓝奏盘,https://www.lanzous.com/i1b2oib 把S改成m或i即可解决,或者请联系本站修复!
- 本站资源和文章版权声明
- 版权声明:本站部分文章来源或改编自互联网及其他公众平台,主要目的在于分享信息,版权归原作者所有,内容仅供读者参考,如有侵权请联系我们,减少损失。联系邮箱:1453316800@qq.com
- 点击下载链接不跳转怎么回事?
- 您好,QQ内打开是不跳转的,少部分浏览器也不跳转,一般的谷歌,UC了,搜狗 360等浏览器都可以跳转。