①文章标签 伪静态版 3.9.6[带标签接口 2.0组件](onexin_tags)
应用截图 | |
应用中心原价 | 398 |
限时特惠 | 20 |
当前版本 | 7 |
库 存 | 93 |
更新日期 | 2022-03-05 |
网盘下载 | https://pan.baidu.com/s/1DZA6YRxh-LA2xPTLU0aCfw |
QQ客服 | 1909859577 |
应用分类 | 插件 |
应用图标 |
优化中文标签
修复已知BUG
增强站内标签关联性,支持给门户文章、论坛贴子和家园日志增加标签以及标签伪静态。
成功安装站点:ONEXIN演示
=================标签网址方案=============================
方案一:
http://demo.onexin.com/tag.html
http://demo.onexin.com/tag-110.html
方案二:
http://demo.onexin.com/tag/
http://demo.onexin.com/tag/影响力/
方案三:
http://demo.onexin.com/tag/
http://demo.onexin.com/tag/影响力.html
注:推荐固定使用其中一种方案。
# IIS/APACHE Web Server 1
RewriteRule ^(.*)/tag(_([0-9]+))?(/|\.html)?$ $1/plugin\.php\?id=onexin_tags&page=$3&%1
RewriteRule ^(.*)/tag-(\d+)(-(\d+))?(/|\.html)?$ $1/plugin\.php\?id=onexin_tags&tagid=$2&page=$4&%1
RewriteRule ^(.*)/tag/([^\/\.]+)(/(\d+))?(/|\.html)?$ $1/plugin\.php\?id=onexin_tags&tagname=$2&page=$4&%1
# IIS/APACHE Web Server 2
RewriteRule ^tag(_([0-9]+))?(/|\.html)?$ plugin.php?id=onexin_tags&page=$2&%1
RewriteRule ^tag-(\d+)(-(\d+))?(/|\.html)?$ plugin.php?id=onexin_tags&tagid=$1&page=$3&%1
RewriteRule ^tag/([^\/\.]+)(/(\d+))?(/|\.html)?$ plugin.php?id=onexin_tags&tagname=$1&page=$3&%1
# Nginx Web Server
rewrite ^([^\.]*)/tag(_([0-9]+))?(/|\.html)?$ $1/plugin.php?id=onexin_tags&page=$3 last;
rewrite ^([^\.]*)/tag-(\d+)(-(\d+))?(/|\.html)?$ $1/plugin.php?id=onexin_tags&tagid=$2&page=$4 last;
rewrite ^([^\.]*)/tag/([^\/\.]+)(/(\d+))?(/|\.html)?$ $1/plugin.php?id=onexin_tags&tagname=$2&page=$4 last;
# IIS 7.x及以上 Web Server(独立主机用户)
<rule name="onexin_tag_1">
<match url="^(.*/)*tag(_([0-9]+))?(/|\.html)?$" />
<action type="Rewrite" url="{R:1}/plugin.php\?id=onexin_tags&page={R:3}" />
</rule>
<rule name="onexin_tag_2">
<match url="^(.*/)*tag-(\d+)(-(\d+))?(/|\.html)?$" />
<action type="Rewrite" url="{R:1}/plugin.php\?id=onexin_tags&tagid={R:2}&page={R:4}" />
</rule>
<rule name="onexin_tag_3">
<match url="^(.*/)*tag/([^\/\.]+)(/(\d+))?(/|\.html)?$" />
<action type="Rewrite" url="{R:1}/plugin.php\?id=onexin_tags&tagname={R:2}&page={R:4}" />
</rule>
=================网址说明=============================
旧规则
http://demo.onexin.com/tag.html
http://demo.onexin.com/tag-110.html
新规则(推荐目录化写法)
http://demo.onexin.com/tag/
http://demo.onexin.com/tag/影响力/
注意:新版请更新伪静态规则