destoon采集论坛

 找回密码
 立即注册
查看: 718|回复: 0

Destoon V6.0手机版伪静态规则不生效的解决方法

[复制链接]

227

主题

0

回帖

1627

积分

版主

Rank: 7Rank: 7Rank: 7

积分
1627
发表于 2016-7-5 11:05:05 | 显示全部楼层 |阅读模式
V6.0手机版伪静态规则不生效,提示Error Loading,官方给出的解决方法是替换新的伪静态规则,具体解决方法如下:
【推荐使用二级域名进行绑定手机端的目录,这样对网站来说,比较好。】
经过测试,受不同服务器软件版本、是否绑定二级域名等因素影响,不同服务器对规则的解析存在差异。
以下为各服务器伪静态规则的两种写法,如果第一条写法不生效,试试第二条写法。
通常情况,第一种写法适合不绑定二级域名,第二种写法适合绑定二级域名。
手机版本属于特殊的独立站点,建议有条件的用户尽量绑定二级域名。
Apache
portant; padding: 0px !important;">
    RewriteRule ^(.*)/([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/index.php?moduleid=$2&catid=$3&itemid=$4&page=$5
[/ol]
portant;">复制代码
portant; padding: 0px !important;">
    RewriteRule ^([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html$ index.php?moduleid=$1&catid=$3&itemid=$3&page=$4
[/ol]
portant;">复制代码
Nginx
portant; padding: 0px !important;">
    rewrite ^/(.*)/([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /$1/index.php?moduleid=$2&catid=$3&itemid=$4&page=$5 last;
[/ol]
portant;">复制代码
portant; padding: 0px !important;">
    rewrite ^/([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /index.php?moduleid=$1&catid=$2&itemid=$3&page=$4 last;
[/ol]
portant;">复制代码
IIS6
portant; padding: 0px !important;">
    RewriteRule ^(.*)/([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/index\.php\?moduleid=$2&catid=$3&itemid=$4&&page=$5
[/ol]
portant;">复制代码
portant; padding: 0px !important;">
    RewriteRule ^([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html(\?(.*))*$ index\.php\?moduleid=$1&catid=$2&itemid=$3&&page=$4
[/ol]
portant;">复制代码
IIS7+
portant; padding: 0px !important;">
   
   
[/ol]
portant;">复制代码
portant; padding: 0px !important;">
   
   
[/ol]
portant;">复制代码
Zeus
portant; padding: 0px !important;">
    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
[/ol]
portant;">复制代码
portant; padding: 0px !important;">
    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
[/ol]
portant;">复制代码

关键词:
destoon问题
destoon伪静态
destoon教程
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|小黑屋|手机版|Archiver|destoon采集论坛

GMT+8, 2025-11-23 04:41 , Processed in 0.013827 second(s), 21 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表