首页
模板
模板分类
整站模板
商铺模板
功能插件
会员中心
企业官网
授权
定制
设计稿
设计稿分类
平台网站
企业官网
案例
案例分类
企业官网
B2B网站
行业平台
外贸平台
百科
百科分类
热门搜索
答网友问
技术文章
联系
联系我们
微信联系
登录
/
注册
技术文章
多行业覆盖、100+精品模版、即选即用、1小时火速上线
点击咨询
首页
>
文章
>
Destoon技巧
Destoon V6.0手机版伪静态规则不生效的error loading page解决方法
V6.0手机版伪静态规则不生效,提示Error Loading,官方给出的解决方法是替换新的伪静态规则,具体解决方法如下:
【推荐使用二级域名进行绑定手机端的目录,这样对网站来说,比较好。】
经过测试,受不同服务器软件版本、是否绑定二级域名等因素影响,不同服务器对规则的解析存在差异。
以下为各服务器伪静态规则的两种写法,如果第一条写法不生效,试试第二条写法。
通常情况,第一种写法适合不绑定二级域名,第二种写法适合绑定二级域名。
手机版本属于特殊的独立站点,建议有条件的用户尽量绑定二级域名。
Apache
RewriteRule ^(.*)/([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/index.php?moduleid=$2&catid=$3&itemid=$4&page=$5
复制代码
RewriteRule ^([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html$ index.php?moduleid=$1&catid=$3&itemid=$3&page=$4
复制代码
Nginx
rewrite ^/(.*)/([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /$1/index.php?moduleid=$2&catid=$3&itemid=$4&page=$5 last;
复制代码
rewrite ^/([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /index.php?moduleid=$1&catid=$2&itemid=$3&page=$4 last;
复制代码
IIS6
RewriteRule ^(.*)/([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/index\.php\?moduleid=$2&catid=$3&itemid=$4&&page=$5
复制代码
RewriteRule ^([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html(\?(.*))*$ index\.php\?moduleid=$1&catid=$2&itemid=$3&&page=$4
复制代码
IIS7+
<match url="^(.*)/([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html\?*(.*)$" />
<action type="Rewrite" url="{R:1}/index.php?moduleid={R:2}&catid={R:3}&itemid={R:4}&page={R:5}"/>
复制代码
<match url="^([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html\?*(.*)$" />
<action type="Rewrite" url="index.php?moduleid={R:1}&catid={R:2}&itemid={R:3}&page={R:4}"/>
复制代码
Zeus
match URL into $ with ^(.*)/([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html$
if matched then
set URL = $1/index.php?moduleid=$2&catid=$3&itemid=$4&page=$5
endif
复制代码
match URL into $ with ^([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html$
if matched then
set URL = index.php?moduleid=$1&catid=$2&itemid=$3&page=$4
endif
复制代码
产地秀,助你成就大平台
便捷高效,快速部署
免费体验
联系我们
咨询电话
13878897862
微信咨询
业务咨询