搜索

搜索

在线
客服

在线客服服务时间: 9:00-20:00

选择下列客服马上在线沟通:

快速
发帖

客服
热线

021-50343443
7*8小时客服服务热线

关注
微信

关注微信公众号
顶部
开启左侧

[discuz教程] 帖子页|复制链接|倒序/正序|打印|只看该作者|等链接伪静态

[复制链接]
Freeman 发表于 2016-9-19 10:51:41 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题
 
1、添加伪静态规则(以Nginx为例):
rewrite ^([^\.]*)/thread-([0-9]+)-f([0-9]+)\.html$ $1/forum.php?mod=viewthread&tid=$2&fromuid=$3 last;
rewrite ^([^\.]*)/thread-([0-9]+)-([0-9]+)-u([0-9]+)\.html$ $1/forum.php?mod=viewthread&tid=$2&authorid=$4&page=$3 last;
rewrite ^([^\.]*)/thread-([0-9]+)-([0-9]+)-o([0-9]+)\.html$ $1/forum.php?mod=viewthread&tid=$2&ordertype=$4&page=$3 last;
rewrite ^([^\.]*)/thread-([1-9][0-9]*)-album\.html$ $1/forum.php?mod=viewthread&tid=$2&from=album last;
rewrite ^([^\.]*)/forum-([1-9][0-9]*)-last\.html$ $1/forum.php?mod=redirect&goto=nextoldset&tid=$2 last;
rewrite ^([^\.]*)/forum-([1-9][0-9]*)-next\.html$ $1/forum.php?mod=redirect&goto=nextnewset&tid=$2 last;
rewrite ^([^\.]*)/printable-([0-9]+)\.html$ $1/forum.php?mod=viewthread&action=printable&tid=$2 last;

依次为 复制链接、只看该作者、倒序看帖/正序看帖、只看大图、上一主题、下一主题、打印帖子 的伪静态规则。

2、修改“复制链接”的链接。打开 forum/viewthread.htm 模板文件,查找
  1. [{lang share_url_copy}]
复制代码

  1. <a href="forum.php?mod=viewthread&tid=$_G[tid]$fromuid" {if $fromuid}title="{lang share_url_copy_comment}"{/if}>[{lang share_url_copy}]</a>
复制代码
替换为
  1. <!--{if !IS_ROBOT}--><a href="thread-$_G[tid]-<!--{if $_G['uid']}-->f$_G['uid']<!--{else}-->1-1<!--{/if}-->.html" rel="nofollow" {if $fromuid}title="{lang share_url_copy_comment}"{/if}>[{lang share_url_copy}]</a><!--{/if}-->
复制代码

3、修改楼层号上复制楼层地址的链接。打开 forum/viewthread_node.htm (或可能为viewthread_node_body.htm)模板文件,
查找
<a href="{if $post[first]}forum.php?mod=viewthread&tid=$_G[tid]$fromuid{else}forum.php?mod=redirect&goto=findpost&ptid=$_G[tid]&pid=$post[pid]$fromuid{/if}"  {if $fromuid}title="{lang share_url_copy_comment}"{/if} id="postnum$post[pid]"
替换为
<a href="{if $post[first]}forum.php?mod=viewthread&tid=$_G[tid]{else}thread-$_G[tid]-$page-1.html#pid$post[pid]{/if}" title="点此复制本帖链接" id="postnum$post[pid]"

4、“只看该作者”伪静态化。打开 forum/viewthread_node.htm (或可能为viewthread_node_body.htm)模板文件,
查找
<!--{if !IS_ROBOT && !$_GET['authorid'] && !$_G['forum_thread']['archiveid']}-->
                                                        <a href="forum.php?mod=viewthread&tid=$post[tid]&page=$page&authorid=$post[authorid]" rel="nofollow">{lang thread_show_author}</a>
                                                <!--{elseif !$_G['forum_thread']['archiveid']}-->
                                                        <a href="forum.php?mod=viewthread&tid=$post[tid]&page=$page" rel="nofollow">{lang thread_show_all}</a>
                                                <!--{/if}-->
将整个if段替换为:
<!--{if !IS_ROBOT && !$_GET['authorid'] && !$_G['forum_thread']['archiveid']}-->
<span class="pipe">|</span>
<a href="thread-$post[tid]-1-u{$post[authorid]}.html" rel="nofollow">{lang thread_show_author}</a>
<!--{elseif !IS_ROBOT && !$_G['forum_thread']['archiveid']}-->
<span class="pipe">|</span>
<a href="forum.php?mod=viewthread&tid=$post[tid]&page=$page" rel="nofollow">{lang thread_show_all}</a>
<!--{/if}-->

5、“倒序/正序看帖”伪静态化。打开 forum/viewthread_node.htm (或可能为viewthread_node_body.htm)模板文件,
查找
<!--{if $ordertype != 1}-->
                                                        <span class="pipe show">|</span><a href="forum.php?mod=viewthread&tid=$_G[tid]&extra=$_GET[extra]&ordertype=1"  class="show">{lang post_descview}</a>
                                                <!--{else}-->
                                                        <span class="pipe show">|</span><a href="forum.php?mod=viewthread&tid=$_G[tid]&extra=$_GET[extra]&ordertype=2"  class="show">{lang post_ascview}</a>
                                                <!--{/if}-->
将整个if段替换为:
<!--{if $ordertype != 1}-->
<span class="pipe show">|</span><a href="thread-$_G[tid]-1-o1.html" rel="nofollow" class="show">{lang post_descview}</a>
<!--{else}-->
<span class="pipe show">|</span><a href="thread-$_G[tid]-1-o2.html" rel="nofollow" class="show">{lang post_ascview}</a>
<!--{/if}-->

6、“只看大图”和“打印”“上一主题/下一主题”链接伪静态化。
打开 forum/viewthread_node.htm 模板文件,查找
  1. <a href="forum.php?mod=viewthread&tid=$_G[tid]&from=album">{lang view_bigpic}</a>
复制代码
替换为
  1. <a href="thread-$_G[tid]-album.html" rel="nofollow"><font color="#336699">相册模式</a>
复制代码

打开 forum/viewthread.htm 模板文件,
查找
  1. forum.php?mod=viewthread&action=printable&tid=$_G[tid]
复制代码
替换为
  1. printable-$_G[tid].html
复制代码

查找
  1. forum.php?mod=redirect&goto=nextoldset&tid=$_G[tid]
复制代码
替换为
  1. thread-$_G[tid]-prev.html
复制代码

查找
  1. forum.php?mod=redirect&goto=nextnewset&tid=$_G[tid]
复制代码
替换为
  1. thread-$_G[tid]-next.html
复制代码

打开 source/module/forum/forum_redirect.php 文件,

if($next) {
                dheader("Location: forum.php?mod=viewthread&tid=$next");
        } elseif($_GET['goto'] == 'nextnewset') {
                showmessage('redirect_nextnewset_nonexistence');
        } else {
                showmessage('redirect_nextoldset_nonexistence');
        }
替换为
if($next) {
                dheader("Location: thread-$next-1-1.html");
        } elseif($_GET['goto'] == 'nextnewset') {
header('HTTP/1.1 404 Not Found');
                showmessage('redirect_nextnewset_nonexistence');
        } else {
header('HTTP/1.1 404 Not Found');
                showmessage('redirect_nextoldset_nonexistence');
        }

7、帖子内容页翻页按钮伪静态化
打开 source/module/forum/forum_viewthread.php 文件,
查找
} else {
        $_GET['viewpid'] = intval($_GET['viewpid']);
在它上面加入
$multipage_thread = multi_thread($_G['forum_thread']['replies'] + 1, $_G['ppp'], $page, 'thread-'.$_G['tid']);

打开 source/function/function_core 文件,在
  1. function simplepage($num, $perpage, $curpage, $mpurl) {
复制代码
前面增加一段(定义multi_thread)
function multi_thread($num, $perpage, $curpage, $mpurl, $maxpages = 0, $page = 10, $autogoto = FALSE, $simple = FALSE, $jsfunc = FALSE) {
return $num > $perpage ? helper_page_thread::multi($num, $perpage, $curpage, $mpurl, $maxpages, $page, $autogoto, $simple, $jsfunc) : '';
}

进入 source/class/helper/ 目录,将 helper_page.php 复制一份命名为 helper_page_thread.php 。并依次修改 helper_page_thread.php 文件中的以下部分:

  1. helper_page
复制代码
修改为
  1. helper_page_thread
复制代码
(共两处,其中文件头注释中的那处无关紧要)

  1. $pagevar = 'page=';
复制代码
修改为
  1. $pagevar = '-';
复制代码

  1. $wml = defined('IN_MOBILE') && IN_MOBILE == 3;
复制代码
前面新增
if($_GET['authorid']) {
$url_filter = '-u'.$_GET['authorid'];
} elseif($_GET['ordertype'] == 1 || $_GET['ordertype'] == 2) {
$url_filter = '-o'.$_GET['ordertype'];
} else {
$url_filter = '-1';
}

将$jsurl = $mpurl.(strpos($mpurl, '{page}') !== false ? '\'.replace(\'{page}\', this.value == 1 ? \'\' : this.value)': $pagevar.'\'+this.value;').'; doane(event);';
替换为$jsurl = substr($mpurl, 0, -1).(strpos($mpurl, '{page}') !== false ? '\'.replace(\'{page}\', this.value == 1 ? \'\' : this.value)': $pagevar.'\'+this.value').'+\'.html\'; doane(event);';


  1. public static function mpurl($mpurl, $pagevar, $page) {
复制代码
下新增
if($_GET['authorid']) {
$url_filter = '-u'.$_GET['authorid'];
} elseif($_GET['ordertype'] == 1 || $_GET['ordertype'] == 2) {
$url_filter = '-o'.$_GET['ordertype'];
} else {
$url_filter = '-1';
}

  1. return $mpurl.$separator.$pagevar.$page;
复制代码
替换为
  1. return substr($mpurl, 0, -1).$separator.$pagevar.$page.$url_filter.'.html';
复制代码

打开 forum/viewthread.htm 模板文件,查找
  1. <div class="pgt">$multipage</div>
复制代码
替换为
  1. <div class="pgt"><!--{if $_GET['highlight'] || $_GET['modthreadkey'] || $_GET['checkrush'] || $_G['forum_thread']['is_archived']}-->$multipage<!--{else}-->$multipage_thread<!--{/if}--></div>
复制代码

查找
  1. <div class="pgs mtm mbm cl">
复制代码
将其下方的
  1. $multipage
复制代码
替换为
<!--{if $_GET['highlight'] || $_GET['modthreadkey'] || $_GET['checkrush'] || $_G['forum_thread']['is_archived']}-->$multipage<!--{else}-->$multipage_thread<!--{/if}-->

8、“电梯直达”伪静态。
打开 forum/viewthread_node.htm 模板文件(有可能在 viewthread_node_body.htm 中)

header("HTTP/1.1 301 Moved Permanently");
        dheader("Location: forum.php?mod=viewthread&tid=$tid&page=$page$authoridurl$ordertypeurl".(isset($_GET['modthreadkey']) && ($modthreadkey = modauthkey($tid)) ? "&modthreadkey=$modthreadkey": '')."#pid$pid");

替换为
$authoridurl2 = $authorid ? 'u'.$authorid : '';
$ordertypeurl2 = $ordertype ? 'o'.$ordertype : '';
if(!$authorid && !$ordertype) {
$noother = '1';
}
header("HTTP/1.1 301 Moved Permanently");
if(!$modthreadkey) {
dheader("Location: thread-$tid-$page-".$authoridurl2.$ordertypeurl2.$noother.".html#pid$pid");
} else {
dheader("Location: forum.php?mod=viewthread&tid=$tid&page=$page$authoridurl$ordertypeurl".(isset($_GET['modthreadkey']) && ($modthreadkey = modauthkey($tid)) ? "&modthreadkey=$modthreadkey": '')."#pid$pid");
}

查找
if($ptid) {
                        header("HTTP/1.1 301 Moved Permanently");
                        dheader("Location: forum.php?mod=viewthread&tid=$ptid");

替换为
$authoridurl3 = $authorid ? 'u'.$authorid : '';
$ordertypeurl3 = $ordertype ? 'o'.$ordertype : '';
if(!$authorid && !$ordertype) {
$noother = '1';
}
if($ptid) {
header("HTTP/1.1 301 Moved Permanently");
dheader("Location: thread-$ptid-1-".$authoridurl3.$ordertypeurl3.$noother.".html");

9、最后,在根目录 robots.txt 文件中添加
Disallow: /printable-*.html
Disallow: /thread-*f*.html
Disallow: /thread-*o*.html
Disallow: /thread-*u*.html
Disallow: /thread-*album.html
Disallow: /thread-*prev.html
Disallow: /thread-*next.html

出售提现 接单赚钱 积分转换 推广 充值 赞助VIP 新手帮助
 

精彩评论1

正序浏览
zero_abr 发表于 2021-8-14 21:13:14 | 显示全部楼层
 
强烈支持,自由者cg有你更精彩!
出售提现 接单赚钱 积分转换 推广 充值 赞助VIP 新手帮助
回复 支持 反对

使用道具 举报

 
点击按钮快速添加回复内容: 支持 高兴 激动 给力 加油 淡定 神作 路过 感恩
您需要登录后才可以回帖 登录 | 现在注册

本版积分规则


1关注

22粉丝

1940帖子

排行榜
  • 任务内容: 根据cad及参考图片建模,先拉个大概再深入 任务周期: 2024年 03月 09日
    380
作者专栏

精品资源出售,数据快速变现

项目交易合作,保障双方权益

COLOR旗下综合交易服务平台

  • 公众号

    官方微信公众号,欢迎您的加入。

    扫码关注
  • 微信客服

    微信客服,有问题请找我。

    扫码联系
  • QQ客服
广告图片

自由者CG期待您来加入

Copyright   ©2014-现在  自由者CGPowered by©Discuz!技术支持:迪恩网络    ( 沪ICP备11008872号 )