别花冤枉钱买了!几分钟实现TAG伪静态并开放搜索引擎收录
记录下方法,X3系列版本应该都能适用。
需求:
misc.php?mod=tag >>> /tag/
misc.php?mod=tag&id=47 >>> /tag/47.html
修改步骤:
1、增加伪静态规则
Nginx Web Server:IIS Web Server:Apache Web Server:2、修改相关模板链接
模板详细修改方法请移步查看(本站会员可免费指导修改),https://www.uw7.cn/thread-297-1-1.html
本站已成功修改!
3、允许搜索引擎抓取tab(DZ默认是禁止的)
打开根目录下robort.txt,找并删除下面两行:再打开根目录下misc.php文件,
查找:注释或删除即可。
需求:
misc.php?mod=tag >>> /tag/
misc.php?mod=tag&id=47 >>> /tag/47.html
修改步骤:
1、增加伪静态规则
Nginx Web Server:
- rewrite ^/tag/(.+).html$ /misc.php?mod=tag&id=$1;
- RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^tag/(.+)\.html$ misc.php?mod=tag&id=$1RewriteCond %{QUERY_STRING} ^(.*)RewriteRule ^tag/\$ misc.php?mod=tag
- RewriteRule ^(.*)/tag/(.+)\.html*$ $1/misc.php\?mod=tag&id=$2RewriteRule ^(.*)/tag/\*$ $1/misc.php\?mod=tag
模板详细修改方法请移步查看(本站会员可免费指导修改),https://www.uw7.cn/thread-297-1-1.html
本站已成功修改!
3、允许搜索引擎抓取tab(DZ默认是禁止的)
打开根目录下robort.txt,找并删除下面两行:
- Disallow: /misc.php
查找:
- $Discuz->reject_robot();