Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
123
返回列表 发新帖

Discuz!X1.5 全面解析之辅助运营篇(十三):SEO设置 全方位进行搜索引擎优化

[复制链接]
zhiju 发表于 2010-10-13 19:27:38 | 显示全部楼层
这个,了解一些。只用到部分,还有一些静态页面,设置了后,那些空间,任务,资料之类的,都进不去了。我有试过一次,吓得我现在都不敢再打静态页面了。不知道,是空间商的问题,还是官方的问题。
回复

使用道具 举报

zgf2009 发表于 2010-10-23 13:30:20 | 显示全部楼层
发现珠海网www.faxianzh.com
回复

使用道具 举报

09927306 发表于 2010-10-23 15:22:12 | 显示全部楼层
很好呀
回复

使用道具 举报

yangjingxj 发表于 2010-11-2 00:04:26 | 显示全部楼层
为什么没有基础学习的东西泥
回复

使用道具 举报

chenqq86 发表于 2010-11-14 13:25:27 | 显示全部楼层
学习了
回复

使用道具 举报

ression 发表于 2011-1-19 11:03:34 | 显示全部楼层
zhiju 发表于 2010-10-13 19:27
这个,了解一些。只用到部分,还有一些静态页面,设置了后,那些空间,任务,资料之类的,都进不去了。我有 ...

开启  url静态化  后,只能打开首页,其他的都打不开了!为什么没人人告诉下,怎么办的?lz说要开启 url静态化 ,但是开启后就有问题。怎么办的啊!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!11
回复

使用道具 举报

biyoude 发表于 2011-1-27 14:53:25 | 显示全部楼层

静态化时需在dz根目录下写入的 .htaccess 官方代码

本帖最后由 biyoude 于 2011-1-27 15:02 编辑

报告一下,网站 http://www.qingshuiqiao.com 启用静态化成功!欢迎检阅.

别附上静态化时需在  Discuz!X1.5 根目录下写入的 .htaccess 官方代码:

Apache Web Server(独立主机用户)

  1. <IfModule mod_rewrite.c>
  2. RewriteEngine On
  3. RewriteCond %{QUERY_STRING} ^(.*)$
  4. RewriteRule ^(.*)/topic-(.+)\.html$ $1/portal.php?mod=topic&topic=$2&%1
  5. RewriteCond %{QUERY_STRING} ^(.*)$
  6. RewriteRule ^(.*)/article-([0-9]+)-([0-9]+)\.html$ $1/portal.php?mod=view&aid=$2&page=$3&%1
  7. RewriteCond %{QUERY_STRING} ^(.*)$
  8. RewriteRule ^(.*)/forum-(\w+)-([0-9]+)\.html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3&%1
  9. RewriteCond %{QUERY_STRING} ^(.*)$
  10. RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=viewthread&tid=$2&extra=page\%3D$4&page=$3&%1
  11. RewriteCond %{QUERY_STRING} ^(.*)$
  12. RewriteRule ^(.*)/group-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=group&fid=$2&page=$3&%1
  13. RewriteCond %{QUERY_STRING} ^(.*)$
  14. RewriteRule ^(.*)/space-(username|uid)-(.+)\.html$ $1/home.php?mod=space&$2=$3&%1
  15. RewriteCond %{QUERY_STRING} ^(.*)$
  16. RewriteRule ^(.*)/([a-z]+)-(.+)\.html$ $1/$2.php?rewrite=$3&%1
  17. </IfModule>
复制代码
Apache Web Server(虚拟主机用户)
  1. # 将 RewriteEngine 模式打开
  2. RewriteEngine On

  3. # 修改以下语句中的 /discuz 为你的论坛目录地址,如果程序放在根目录中,请将 /discuz 修改为 /
  4. RewriteBase /discuz

  5. # Rewrite 系统规则请勿修改
  6. RewriteCond %{QUERY_STRING} ^(.*)$
  7. RewriteRule ^topic-(.+)\.html$ portal.php?mod=topic&topic=$1&%1
  8. RewriteCond %{QUERY_STRING} ^(.*)$
  9. RewriteRule ^article-([0-9]+)-([0-9]+)\.html$ portal.php?mod=view&aid=$1&page=$2&%1
  10. RewriteCond %{QUERY_STRING} ^(.*)$
  11. RewriteRule ^forum-(\w+)-([0-9]+)\.html$ forum.php?mod=forumdisplay&fid=$1&page=$2&%1
  12. RewriteCond %{QUERY_STRING} ^(.*)$
  13. RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ forum.php?mod=viewthread&tid=$1&extra=page\%3D$3&page=$2&%1
  14. RewriteCond %{QUERY_STRING} ^(.*)$
  15. RewriteRule ^group-([0-9]+)-([0-9]+)\.html$ forum.php?mod=group&fid=$1&page=$2&%1
  16. RewriteCond %{QUERY_STRING} ^(.*)$
  17. RewriteRule ^space-(username|uid)-(.+)\.html$ home.php?mod=space&$1=$2&%1
  18. RewriteCond %{QUERY_STRING} ^(.*)$
  19. RewriteRule ^([a-z]+)-(.+)\.html$ $1.php?rewrite=$2&%1
复制代码
IIS Web Server(独立主机用户)
  1. [ISAPI_Rewrite]

  2. # 3600 = 1 hour
  3. CacheClockRate 3600

  4. RepeatLimit 32

  5. # Protect httpd.ini and httpd.parse.errors files
  6. # from accessing through HTTP
  7. RewriteRule ^(.*)/topic-(.+)\.html(\?(.*))*$ $1/portal\.php\?mod=topic&topic=$2&$4
  8. RewriteRule ^(.*)/article-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/portal\.php\?mod=view&aid=$2&page=$3&$5
  9. RewriteRule ^(.*)/forum-(\w+)-([0-9]+)\.html(\?(.*))*$ $1/forum\.php\?mod=forumdisplay&fid=$2&page=$3&$5
  10. RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/forum\.php\?mod=viewthread&tid=$2&extra=page\%3D$4&page=$3&$6
  11. RewriteRule ^(.*)/group-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/forum\.php\?mod=group&fid=$2&page=$3&$5
  12. RewriteRule ^(.*)/space-(username|uid)-(.+)\.html(\?(.*))*$ $1/home\.php\?mod=space&$2=$3&$5
  13. RewriteRule ^(.*)/([a-z]+)-(.+)\.html(\?(.*))*$ $1/$2\.php\?rewrite=$3&$5
复制代码
IIS7 Web Server(独立主机用户)
  1. <rewrite>
  2. <rules>
  3. <rule name="portal_topic">
  4. <match url="^(.*/)*topic-(.+).html\?*(.*)$" />
  5. <action type="Rewrite" url="{R:1}/portal.php\?mod=topic&amp;topic={R:2}&amp;{R:3}" />
  6. </rule>
  7. <rule name="portal_article">
  8. <match url="^(.*/)*article-([0-9]+)-([0-9]+).html\?*(.*)$" />
  9. <action type="Rewrite" url="{R:1}/portal.php\?mod=view&amp;aid={R:2}&amp;page={R:3}&amp;{R:4}" />
  10. </rule>
  11. <rule name="forum_forumdisplay">
  12. <match url="^(.*/)*forum-(\w+)-([0-9]+).html\?*(.*)$" />
  13. <action type="Rewrite" url="{R:1}/forum.php\?mod=forumdisplay&amp;fid={R:2}&amp;page={R:3}&amp;{R:4}" />
  14. </rule>
  15. <rule name="forum_viewthread">
  16. <match url="^(.*/)*thread-([0-9]+)-([0-9]+)-([0-9]+).html\?*(.*)$" />
  17. <action type="Rewrite" url="{R:1}/forum.php\?mod=viewthread&amp;tid={R:2}&amp;extra=page%3D{R:4}&amp;page={R:3}&amp;{R:5}" />
  18. </rule>
  19. <rule name="group_group">
  20. <match url="^(.*/)*group-([0-9]+)-([0-9]+).html\?*(.*)$" />
  21. <action type="Rewrite" url="{R:1}/forum.php\?mod=group&amp;fid={R:2}&amp;page={R:3}&amp;{R:4}" />
  22. </rule>
  23. <rule name="home_space">
  24. <match url="^(.*/)*space-(username|uid)-(.+).html\?*(.*)$" />
  25. <action type="Rewrite" url="{R:1}/home.php\?mod=space&amp;{R:2}={R:3}&amp;{R:4}" />
  26. </rule>
  27. <rule name="all_script">
  28. <match url="^(.*/)*([a-z]+)-(.+).html\?*(.*)$" />
  29. <action type="Rewrite" url="{R:1}/{R:2}.php\?rewrite={R:3}&amp;{R:4}" />
  30. </rule>
  31. </rules>
  32. </rewrite>
复制代码

回复

使用道具 举报

-初恋情人- 发表于 2011-1-28 09:36:21 | 显示全部楼层
学习了
回复

使用道具 举报

cuilipeng 发表于 2011-2-6 14:02:58 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

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

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-16 18:31 , Processed in 0.065746 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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