SmartFAQ是由The SmartFactory(https://www.smartfactory.ca),InBox Solutions(https://www.inboxsolutions.net)的分支机构开发的。

如何最大化搜索引擎优化?
搜索引擎可以为您提供吸引大量目标流量或确保您的网站被搜索者找到的方法。如果您没有遵循一些简单的SEO规则,仅构建网站并期待所有人都能找到它是不够的。Google、Yahoo!和MSN搜索都遵循旨在帮助搜索者的类似规则。只有当您满足这些规则时,您才会雄伟地飘到首页甚至第1位。没有捷径!!!偶尔会出现一些漏洞,允许搜索引擎垃圾邮件,但只有短短几天,谷歌工作人员比任何人都更了解其算法,他们将会迅速关闭任何在更新中创建的漏洞。以下是一些必备要素:1 - 独特的内容,越多越好;2 - 新鲜的内容,谷歌喜欢新内容;3 - 许多指向您网站的链接;4 - 每页单独针对特定单词或短语进行优化。前三点我就无法帮助您了;内容只是需要付出努力。把狗和孩子放出去,服用药用油,一直写到天亮!100页真的是最低标准,但目标应该是500-1,000页。反向链接至关重要,所有3个引擎都按反向链接的数量对网站进行排名。基本上,反向链接是其他网站管理员对您网站的“投票”,搜索引擎将这些“投票”用作根据该页面的“投票”数量来区分该页面的流行程度的方法。获取反向链接的最好方法是给网站管理员发送邮件,礼貌地请求链接。有争议认为相互链接没有任何好处,但单向链接是有好处的,简单的事实是您真的需要两者,而且单向链接很难获得。好,那么,我的文章的精髓,如何使用Xoops来优化您网站上的页面!以下是一个列表(不完整但全面)的,为了让Google、Yahoo!或MSN机器人能够抓取这些关键词,您需要在页面中如何播下种子。将这些词汇放在:- Meta关键词 - Meta描述 - 页面标题(但不是第一个词) - In确保100%的关键词被最基础的聊天机器人(BOT)捕获 - 在页面主体纯文本中 - 至少H3级别的大标题 - 第二段加粗 - 第二段或后续段落斜体 - 图片的ALT标签中 - 链接到其他网站或内部页面或两者都适用(示例中不适用)。因此,如何让Xoops实现这一点其实非常简单。要优化的页面关键词通常会在文章的标题中,例如这篇文章的标题是“Google、Yahoo和MSN搜索引擎优化(SEO)”Xoops会方便地将这个标题存储在Xoops标题代码中:<{$xoops_pagetitle}>,现在我们只需要策略性地在模板中放置这个内容。这将确保每个页面都与文章标题中的关键词不同并且进行了优化。下载并复制你的themes.html页面。这将在public_html/themes/Your-Theme-Name/theme.html中。开始之前务必复制原页!只有傻瓜才会忽视这条建议。如果你只犯了一个字符的错误,你原本整洁的代码可能会变成只有恶魔本身才能产生的代码。好的,现在我们将这些词放入代码,只做以下操作:
meta name="keywords" content="<{$xoops_meta_keywords}>" /
修改为
meta name="keywords" content="<{$xoops_pagetitle}>, <{$xoops_meta_keywords}>" /
修改为
meta name="description" content="<{$xoops_meta_description}>" /
修改为
meta name="description" content="<{$xoops_pagetitle}>, <{$xoops_meta_description}>" /
修改为
body>
修改为
body>
noscripth1><{$xoops_pagetitle}> /h1> /noscript>
修改为
img src="<{$xoops_imageurl}>images/logo.gif"
修改为
图片源 src="<{$xoops_imageurl}>images/logo.gif" alt="<{$xoops_pagetitle}>"
修改为
{$xoops_footer}>  &nbsp;|
修改为
{$xoops_footer}>  &nbsp;| &nbspa href="http://www.your-domain-here.com/" target="_self">  <{$xoops_pagetitle}>  /a
额外功能:您还可以在内容或菜单区域之外添加一些内容,使用粗体和斜体标签包装 <{xoops_pagetitle}>。还可以创建一个链接,使用 <{xoops_pagetitle}> 作为HREF标题,并将其指向主页、文章索引或返回同一页面。比较理想的是文章索引,因为这种链接更有可能包含您所参考文章的关键字,这对搜索引擎来说是受欢迎的。以下是由 'hoorah' 在论坛上发布的帖子的内容(未进行测试,但可行)。
以下是由 Cubiq 在表格上发布的另一个想法 无侵入的页面元标签 对于搜索引擎的良好排名来说,能够在每个页面级别上更改元标签是非常重要的。在Xoops中,您通过在 "theme.html" 文件中使用几行Smarty代码来更改元标签和页面标题,而不需要任何PHP编程。我们需要的只是检查Smarty变量 $xoops_pagetitle 的前4个字符。$xoops_pagetitle 包含当前页面标题,这可能会根据您使用的模块而变化(例如:新闻模块1.0 只在 $xoops_pagetile 中放置模块名称,但新闻1.2 则在此变量中填充模块名称、新闻主题和标题)。不过,所有的模块都将模块名称作为开头。我们只需要在theme.html中的 "head" 标签内修改一些行。查找以下内容:
将其替换为
<{if $xoops_pagetitle|truncate:4:""=="NewB" }>
<
meta name="description" content="这是在新BB模块中显示的元描述。" />
<
meta name="keywords" content="meta, keywords, newbb, 论坛" />
<
meta name="keywords" content="meta, keywords, for, newbb, forum" />
<{elseif 
$xoops_pagetitle|truncate:4:""=="News" }>
<
meta name="description" content="这里是新闻部分。" />
<
meta name="keywords" content="we, love, news" />
<{else}>
<
meta name="keywords" content="<{$xoops_meta_keywords}>" />
<
meta name="description" content="<{$xoops_meta_description}>" />
<{/if}>
我们检查变量$xoops_pagetitle的前4个字符,并按照用户浏览的模块提供不同的内容。这不是一个页面级别的解决方案,但至少每个模块可以拥有自己的元标签。显然,你也可以通过在每个if/elseif子句中添加“标题”标签来为每个或某些模块更改页面标题。注意:根据您的xoops配置和语言,模块名称可能会更改!例如,此网站论坛的名称为“支持论坛”,我们需要检查的前4个字符将是“Supp”(并且应该区分大小写)。再次提醒,此功能未由提交者测试。///////////////////////////////////////////////// 另外,exploz还有一个从这里看到的漏洞。 //////////////////////////////////////////////// 还有一个漏洞可以重写查询字符串以生成搜索引擎友好的地址。有关详细信息,请参阅ShortURLs漏洞 //////////////////////////////////////////////// 关于这些漏洞的反馈请?


评论归作者所有。我们不承担其内容的责任。
user

 SEO


感谢提供有用信息。我已经实施了在主题中插入page_title信息的第一个想法。

关于第二个选项的if/else语句,如果您不希望截断搜索page_title(模块),应该如何编写代码?

谢谢!

 
user

 关于SEO


感谢评论。我收集了ManXP在另一个论坛线程中关于SEO的另一个修改这里。他声称这带来了相当多的引用,但他尚未发布其工作原理的细节。正如我指出的,任何完整的SEO程序都需要解决两个主要问题

1- 每页完整meta标签
2- 将查询字符串重写为适用于搜索引擎的URL。

任何想要超越谷歌搜索引擎及其下游搜索引擎的人士都需要考虑这两个问题。

到目前为止,XOOPS用户已经为这两个要求构建了修改,但需要有人整理真正有效的修改并组合成一个包。

 
user

 关于SEO


在论坛中找到了另一个页面标题修改

我将尝试总结这些并很快更新FAQ。

 
user

 关于SEO


短链接破解方式的成功率不高,尤其是使用xcgal,这会导致图片和链接图片混乱。我认为这可能与我网站的重定向有关,但不论是哪种情况。我在除了Google以外的其他搜索引擎上,对于相关搜索词的表现还好。

我想让大家知道我已经增加了if/else语句,以包含以下内容:tag for the site. now when users go to specific sections within the site, not only do section specific meta tags and descriptions show, but also the overall title is customized. I believe this will also assist with rankings. You can see it here:<br><br><a href="http://www.hotdogblog.com" target="_blank" rel="external noopener nofollow">http://www.hotdogblog.com</a><br><br>I'll let you know if my rankings increase based on these changes. I've been tracking them.</p> <div style="text-align:right; margin-top: 2px; margin-bottom: 0; margin-right: 2px;">   </div> </div> </div> </div> </div> <div class="xoops-comment-template" id="comment14264"> <div class="comment-widgets m-b-20"> <div class="d-flex flex-row comment-row"> <div class="p-2"><span class="round"><img src="https://xoops.org.cn/uploads/blank.gif" alt="user" width="50"></span></div> <div class="comment-text w-100"> <h4><b style="color:#139ee8"><img src="https://xoops.org.cn/images/icons/no_posticon.gif" alt="" /> Re: SEO</b></h4> <div class="comment-footer d-none d-md-block"> <span class="date"><i class="fas fa-user"></i> <a href="https://xoops.org.cn/userinfo.php?uid=21368">toddherrold</a> </span> <span class="date"><i class="fas fa-calendar-alt"></i> Published 02/13/2005 18:11 </span> <span class="date"><i class="fas fa-calendar-alt"></i> Updated 02/13/2005 18:17 </span> <span class="date"><i class="fas fa-star"></i> Quite a regular </span> <span class="date"><i class="far fa-calendar-alt"></i> Joined 06/13/2004 </span> <span class="date"><i class="far fa-comments"></i> Comments 274 </span> <span class="date"><i class="fas fa-globe"></i>  </span> </div> <hr> <p class="m-b-5 m-t-10 yorumboyut">Results: movement from 153 to 60 on specific keyword phrase in google. This movement occurred since the time I incorporated page_title throughout and also if/then statements to specify meta keywords and description.<br><br>I've made additional SEO changes on this page and will report on that when google crawls next.</p> <div style="text-align:right; margin-top: 2px; margin-bottom: 0; margin-right: 2px;">   </div> </div> </div> </div> </div> <div class="xoops-comment-template" id="comment14274"> <div class="comment-widgets m-b-20"> <div class="d-flex flex-row comment-row"> <div class="p-2"><span class="round"><img src="https://xoops.org.cn/uploads/cavt42e785ef59e66.jpg" alt="user" width="50"></span></div> <div class="comment-text w-100"> <h4><b style="color:#139ee8"><img src="https://xoops.org.cn/images/icons/no_posticon.gif" alt="" /> Re: SEO</b></h4> <div class="comment-footer d-none d-md-block"> <span class="date"><i class="fas fa-user"></i> <a href="https://xoops.org.cn/userinfo.php?uid=14091">carnuke</a> </span> <span class="date"><i class="fas fa-calendar-alt"></i> Published 02/13/2005 22:35 </span> <span class="date"><i class="fas fa-star"></i> Home away from home </span> <span class="date"><i class="far fa-calendar-alt"></i> Joined 11/05/2003 </span> <span class="date"><i class="far fa-comments"></i> Comments 1955 </span> <span class="date"><i class="fas fa-globe"></i>  </span> </div> <hr> <p class="m-b-5 m-t-10 yorumboyut">Thanks toddherrold for your feedback, slow progress I know, but worthwhile information in the end. <img class="imgsmile" src="https://xoops.org.cn/uploads/smil3dbd4d6422f04.gif" alt="" /></p> <div style="text-align:right; margin-top: 2px; margin-bottom: 0; margin-right: 2px;">   </div> </div> </div> </div> </div> <div class="xoops-comment-template" id="comment14569"> <div class="comment-widgets m-b-20"> <div class="d-flex flex-row comment-row"> <div class="p-2"><span class="round"><img src="https://xoops.org.cn/uploads/blank.gif" alt="user" width="50"></span></div> <div class="comment-text w-100"> <h4><b style="color:#139ee8"><img src="https://xoops.org.cn/images/icons/no_posticon.gif" alt="" /> Re: SEO</b></h4> <div class="comment-footer d-none d-md-block"> <span class="date"><i class="fas fa-user"></i> <a href="https://xoops.org.cn/userinfo.php?uid=21368">toddherrold</a> </span> <span class="date"><i class="fas fa-calendar-alt"></i> Published 02/25/2005 5:26 </span> <span class="date"><i class="fas fa-calendar-alt"></i> Updated 03/02/2005 6:09 </span> <span class="date"><i class="fas fa-star"></i> Quite a regular </span> <span class="date"><i class="far fa-calendar-alt"></i> Joined 06/13/2004 </span> <span class="date"><i class="far fa-comments"></i> Comments 274 </span> <span class="date"><i class="fas fa-globe"></i>  </span> </div> <hr> <p class="m-b-5 m-t-10 yorumboyut">final update on SEO. I made all of the suggested changes above and then i also made the change to xcgal to include my keyword before thumbs and normal size images. This brought me from 153 to 7!!! in google on my targeted keyword phrase. . . not too shabby!</p> <div style="text-align:right; margin-top: 2px; margin-bottom: 0; margin-right: 2px;">   </div> </div> </div> </div> </div> <div class="xoops-comment-template" id="comment14572"> <div class="comment-widgets m-b-20"> <div class="d-flex flex-row comment-row"> <div class="p-2"><span class="round"><img src="https://xoops.org.cn/uploads/blank.gif" alt="user" width="50"></span></div> <div class="comment-text w-100"> <h4><b style="color:#139ee8"><img src="https://xoops.org.cn/images/icons/no_posticon.gif" alt="" /> Re: SEO</b></h4> <div class="comment-footer d-none d-md-block"> <span class="date"><i class="fas fa-user"></i> <a href="https://xoops.org.cn/userinfo.php?uid=26709">gojoe_gojoe</a> </span> <span class="date"><i class="fas fa-calendar-alt"></i> Published 02/25/2005 8:26 </span> <span class="date"><i class="fas fa-star"></i> Just popping in </span> <span class="date"><i class="far fa-calendar-alt"></i> Joined 11/11/2004 </span> <span class="date"><i class="far fa-comments"></i> Comments 20 </span> <span class="date"><i class="fas fa-globe"></i>  </span> </div> <hr> <p class="m-b-5 m-t-10 yorumboyut">I have been looking at title URls for XOOPS and so far there isn't much that is all that great. I am developing a site for a customer using Oscommerce and they have a mod called Ultimate SEO URLs and the guy who developed it did a great job <a href="http://www.oscommerce.com/community/contributions,2823" target="_blank" rel="external noopener nofollow">http://www.oscommerce.com/community/contributions,2823</a> After looking through his script and what he did, I don't see why there isn't a hack yet for XOOPS like this. Basically he is storing the titles in cache and the database and calling it up to the URL. I am not a big scripter.... <img class="imgsmile" src="https://xoops.org.cn/uploads/smil42e7a6918f641.gif" alt="" /> OH I wish I had the ability. However I am deep into SEO. If XOOPS could do a URL with titles and have every page for Title meta tags and Meta Descriptions it would put them far above any competitor on the market....it's all about marketing anyway.<br>I would pay for a title URL script in a heart beat <img class="imgsmile" src="https://xoops.org.cn/uploads/smil42e7a3d4c7b9f.gif" alt="" /></p> <div style="text-align:right; margin-top: 2px; margin-bottom: 0; margin-right: 2px;">   </div> </div> </div> </div> </div> <div class="xoops-comment-template" id="comment14574"> <div class="comment-widgets m-b-20"> <div class="d-flex flex-row comment-row"> <div class="p-2"><span class="round"><img src="https://xoops.org.cn/uploads/cavt42e785ef59e66.jpg" alt="user" width="50"></span></div> <div class="comment-text w-100"> <h4><b style="color:#139ee8"><img src="https://xoops.org.cn/images/icons/no_posticon.gif" alt="" /> Re: SEO</b></h4> <div class="comment-footer d-none d-md-block"> <span class="date"><i class="fas fa-user"></i> <a href="https://xoops.org.cn/userinfo.php?uid=14091">carnuke</a> </span> <span class="date"><i class="fas fa-calendar-alt"></i> Published 02/25/2005 10:43 </span> <span class="date"><i class="fas fa-calendar-alt"></i> Updated 02/25/2005 10:44 </span> <span class="date"><i class="fas fa-star"></i> Home away from home </span> <span class="date"><i class="far fa-calendar-alt"></i> Joined 11/05/2003 </span> <span class="date"><i class="far fa-comments"></i> Comments 1955 </span> <span class="date"><i class="fas fa-globe"></i>  </span> </div> <hr> <p class="m-b-5 m-t-10 yorumboyut">>>gojoe_gojoe<br>Is a heart beat valid currency here :LOL: I wish ...<br><br>However, did you see the link in the FAQ to <a href="https://xoops.org.cn/modules/news/article.php?storyid=1469&com_id=13673&com_rootid=8478&#comment13673" rel="noopener external" title="">Exploz name hack</a><br><br>>>Toddherrold<br>Thanks for your update... Could you detail here exactly which hacks/ you used?? There are a few listed and it would be good to focus on ones that work.<br><br>Thanks</p> <div style="text-align:right; margin-top: 2px; margin-bottom: 0; margin-right: 2px;">   </div> </div> </div> </div> </div> <div class="xoops-comment-template" id="comment14588"> <div class="comment-widgets m-b-20"> <div class="d-flex flex-row comment-row"> <div class="p-2"><span class="round"><img src="https://xoops.org.cn/uploads/blank.gif" alt="user" width="50"></span></div> <div class="comment-text w-100"> <h4><b style="color:#139ee8"><img src="https://xoops.org.cn/images/icons/no_posticon.gif" alt="" /> Re: SEO</b></h4> <div class="comment-footer d-none d-md-block"> <span class="date"><i class="fas fa-user"></i> <a href="https://xoops.org.cn/userinfo.php?uid=21368">toddherrold</a> </span> <span class="date"><i class="fas fa-calendar-alt"></i> Published 02/25/2005 18:50 </span> <span class="date"><i class="fas fa-calendar-alt"></i> Updated 03/02/2005 6:11 </span> <span class="date"><i class="fas fa-star"></i> Quite a regular </span> <span class="date"><i class="far fa-calendar-alt"></i> Joined 06/13/2004 </span> <span class="date"><i class="far fa-comments"></i> Comments 274 </span> <span class="date"><i class="fas fa-globe"></i>  </span> </div> <hr> <p class="m-b-5 m-t-10 yorumboyut">I too would like to see SEO URL Optimization in future version of XOOPS core. It should be the standard operation of the CMS, not something you have to add on later and tweak for each module you use. <br><br>In terms of the hacks I did on my site which greatly increased my ranking in Google:<br><br>1. if/else statements to specify title, keyword, and description tags on specific sections<br><br>Quote:<div class="xoopsQuote"><blockquote><{if $xoops_pagetitle|truncate:6:""=="type 6 characters of module name" }><br><title><{$xoops_sitename}> - type unique title here


<{elseif $xoops_pagetitle|truncate:5:""=="type 5 characters of next module name" }>
<{$xoops_sitename}> - 在此处输入独特标题,或使用 <{$xoops_pagetitle}>



……(根据需要或愿望重复模式)……

<{else}>
<{$xoops_sitename}> - <{$xoops_pagetitle}>


<{/if}>



2. 立即紧接在标签之后
引用


3. 立即紧接在页脚代码(
user

 关于SEO


如何使用这个破解方法为我自己制作的页面?在添加了一些手动链接并将其包含在我的XOOPS主题中后,在这些页面上该方法不起作用。

它是这样的

include("/home/httpd/vhosts/mysite.com/httpdocs/mainfile.php");
include(XOOPS_ROOT_PATH."/header.php");
?>

我的内容在这里

include(XOOPS_ROOT_PATH."/footer.php");
?>

然后显示的标题为--,并且元数据仍然是我在“管理”>“常规设置”中定义的?

 
user

 关于SEO


有人能解释一下if/else代码吗?

我理解它的作用,但truncate:4(

truncate:4:""=="NewB"
)是什么意思?

我还能在哪里声明"truncate"?

数字"4"指的是什么?

我如何为每个模块赋予一个编号?我是不是只需从脑海中挑选一个?

谢谢!

Aharon

 
user

 关于SEO


截取是一个函数,不需要定义。

4 = 前四个字符

 
user

 关于SEO


引用

toddherrold 写道
我也希望在未来版的XOOPS核心中看到SEO URL优化。它应该是CMS的标准操作,而不是你在后期需要添加并调整每个模块的操作。

为什么还没有实现呢?
我已经花费了数小时学习尽可能多的SEO知识,但仍然不足以在没有任何这些指南和提示的情况下将XOOPS优化为尽可能SEO友好。

mmmh .. 我爱上了XOOPS

 
user

 回复:SEO和页面标签


XBS MetaTags至少满足了本帖的动态标签需求。URL缩短我认为在其他地方已经涵盖了。

在此下载

 
user

 回复:SEO和页面标签


这是一个很好的教程。谢谢。

根据我的经验,我不建议使用"noscript> h1> <{$xoops_pagetitle}> /h1> /noscript>"。

目前还好,但如果未来可能会因此受到惩罚。

此外,将标题包含在URL中将大大提高排名。你们中有谁知道如何做到这一点吗?

 


Login

Who's Online

269 user(s) are online (21 user(s) are browsing XOOPS FAQ)


Members: 0


Guests: 269


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Aug 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Did you know ?

You can use Google Analytics with your website!

Random question

Can I backup my database and site files automatically?