云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 下载地址: 【蓝奏网盘】
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长118194359@qq.com!
2. 分享目的仅供学习和交流,下载后请在24小时内删除!
3. 严禁非法商业使用和违反国家法律,后果自负!
4. 本站提供的资源仅包含源码、模板、插件等,不提供技术服务,敬请理解!
5. 如有下载链接失效、无法下载或存在广告,请联系管理员处理!
6. 本站资源售价只是赞助,用于维持日常运营所需费用!
7. 如遇到加密压缩包,请使用WINRAR解压,解压遇到问题请联系管理员!
8. 源码未经详细测试和修改,请使用前自行甄别,无法分辨病毒和误报的部分源码。
9. 源码为可复制产品,不提供退款。
暂无评论内容