- UID
- 1
- 主题
管理员
- CN币
- 币
- 威望
- 值
- 报料奖
- 元
- 贡献
- 值
- 回复
- 帖
- 日志
- 好友
- 帖子
- 主题
- 听众
- 收听
- 性别
- 保密
|
Discuz! x2/x2.5/x3 修改帖子复制连接地址URL为静态的方法
一、Discuz X2.0修改方法: - <a href="forum.php?mod=viewthread&tid=$_G[tid]$fromuid" title="{lang share_url_copy_comment}">[{lang share_url_copy}]</a>
复制代码
修改成 - <a href="thread-$_G[tid]-1-1.html" title="{lang share_url_copy_comment}">[{lang share_url_copy}]</a>
复制代码
二、Discuz X2.5修改方法: - <a href="forum.php?mod=viewthread&tid=$_G[tid]$fromuid" {if $fromuid}title="{lang share_url_copy_comment}"{/if}>[{lang share_url_copy}]</a>
复制代码
修改为 - <a href="thread-$_G[tid]-1-1.html" {if $fromuid}title="{lang share_url_copy_comment}"{/if}>[{lang share_url_copy}]</a>
复制代码
三、Discuz X3.0修改方法: - <a href="forum.php?mod=viewthread&tid=$_G[tid]$fromuid" {if $fromuid}title="{lang share_url_copy_comment}"{/if}>[{lang share_url_copy}]</a>
复制代码
修改为 - <a href="thread-$_G[tid]-1-1.html" {if
- $fromuid}title="{lang share_url_copy_comment}"{/if}>[{lang
- share_url_copy}]</a>
复制代码
|
|
|