云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 下载地址: 【蓝奏网盘】
站长群集#技术教程交流Q群:280283793 (新群&禁广)
大鹏资源网永久发布地址www.wobbt.cn(防失联)本站提供的资源,都来自网络,版权争议与本站无关,所有内容及软件的文章仅限用于学习和研究目的。不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负,我们不保证内容的长久可用性,通过使用本站内容随之而来的风险与本站无关,您必须在下载后的24个小时之内,从您的电脑/手机中彻底删除上述内容。如果您喜欢该程序,请支持正版软件,购买注册,得到更好的正版服务。如果有侵权之处请第一时间联系我们删除。敬请谅解! E-mail:dpymw@qq.com
暂无评论内容