dedecms系统伪静态

[不指定 2008/09/05 09:55 | by mlzy ]
1、将include复制到网站中的include目录。(这个我并未找到相关文件,而且这篇文章似乎也被原作者删除了)
2、修改数据库将所有文档设置为“仅动态”,可以进入数据库管理中,执行下面命令: update dede_archives set ismake=2 并将ismake的默认值设置为 2即伪静态。将所有栏目设置为“使用动态页”,可以进入数据库管理中,执行下面命令: update dede_arctype set isdefault=-1 并将isdefault的默认值设置为 -1即动态。
3、加入服务器重写规则,在根目录新建一个.htaccess

    php_value session.use_trans_sid 0

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.*) $1 [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/([0-9]+).html$ plus/view.php?aid=$2 [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/([0-9]+)_([0-9]+).html$ plus/view.php?aid=$2&pageno=$3 [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/list_([0-9]+)_([0-9]+).html$ plus/list.php?typeid=$2&PageNo=$3 [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/list_([0-9]+).html$ plus/list.php?typeid=$2 [L]
4、调整完毕后到DEDE后台管理程序中,更新一下首页,完成。

DedeCms的SEO技巧之URL篇

[不指定 2008/09/04 22:00 | by mlzy ]
帮别人写了一些测试用的SEO的站点,用的工具是DEDECMS3.1,当时找想关的CMS程序就花了很多心思,开始用的是国外的几个,都不顺手,在别人的博客看到了有人推荐DEDECMS,下了一个用用,经过小小的努力,当然也是因为有压力(我这个人没点压力什么都做不好),掌握了一些SEO优化技巧,大家一起分享一下吧!

所谓SEO技巧,这里要说的不是<MATE>标签之类的,是URL,不知道大家是否留意过这个。 DEDECMS,提供了几种生成URL的方法,把它叫做“文章命名规则”,有这几种:{Y}、{M}、{D},{timestamp},{aid},{pinyin}, {py},{typedir},{cc}这几种,大家常用哪些呢?在DEDECMS的论坛上,看见有人寻问用{pinyin}的方法,如何去掉文章的 ID,一直没有人回复,也不知道那位兄弟解决了没,但是这里有更好的方法命名后的地址如:http: //www.xxx.com/xxx/dkofkvom.html,类似这种随机数的样子,并且去掉了\"-""_"之类的字符,想知道吗,打开DW,与我一起动手改吧!<br/><br/>首先打开,include\inc_channel_unit_functions.php,在56行左右,$articleRule = str_replace("{py}",GetPinyin($title,1)."_".$aid,$articleRule);改成$ articleRule = str_replace("{py}",GetPinyin($title,1),$articleRule);也就是去掉."_".$aid.<br/><br/>然后在include\inc\inc_fun_funAdmin.php中,把第一个函数function SpGetPinyin($str,$ishead=0,$isclose=1)下面的FOR循环修改为如下:<br/><br/><div class="code"><br/>  for($i=0;$i<24;$i++){<br/>    if(ord($str[$i])>0x80)<br/>    {<br/>        $c = $str[$i].$str[$i+1];<br/>        $i++;<br/>        if(isset($pinyins[$c])){<br/>          if($ishead==0) $restr .= $pinyins[$c];<br/>          else $restr .= $pinyins[$c][0];<br/>        }else $restr .= "";<br/>    }else if( eregi("[a-z]",$str[$i]) ){   $restr .= $str[$i]; }<br/>    else{ $restr .= ""; }<br/>  }<br/><br/></div><br/><br/>这两部都做完之后,把“文章命名规则”写为{typedir}/{py}.html,测试一下你的文章URL吧!是不是很SEO。 </div> <div class="tags" style="display: block"> Tags: <a href="tags/%25E8%25BD%25AC%25E8%25BD%25BD/" title="Tags: 转载" rel="tag">转载</a> , <a href="tags/%25E7%25BD%2591%25E7%25BB%259C/" title="Tags: 网络" rel="tag">网络</a> , <a href="tags/%25E6%258A%2580%25E6%259C%25AF/" title="Tags: 技术" rel="tag">技术</a> , <a href="tags/dedecms/" title="Tags: dedecms" rel="tag">dedecms</a> </div> <div class="textbox-bottom"> <a href="category/15/" title="查看分类: 技术">技术</a> | <a href="post/807/#reply" title="发表您的评论">评论(0)</a> | <a href='javascript: void(0);' title="查看引用地址" onclick='showhidediv("tb807");'>引用(0)</a> | <a href="post/807/">阅读(296)</a> </div> <div id="tb807" style="display: none;" class="textbox-tburl"><strong>引用功能被关闭了。</strong></div> </div><div class="textbox"> <div class="textbox-title"> <h4> <span id="starid805"><img src="images/others/unstarred.gif" alt="" title="未加星标" border="0"/></span> <a href="post/805/">dede生成静态页和动态页转换</a> </h4> <div class="textbox-label"> [<img src="images/weather/blank.gif" alt="不指定" title="不指定"/> 2008/09/04 16:16 | by <a href="user/32/" target="_blank">mlzy</a> ] </div> </div> <div class="textbox-content"> 这是我自己原创改的,因为我发现网上流传的是错误的,代码改动错误,文件位置错误。<br/><br/>1.如何修改默认发布为动态页;[有人成功了,我似乎无效]<br/>这个其实很简单,会改html就可以了!把dede/templates文件夹打开,用编辑器打开article_add.html,找到<br/><div class="code"><br/><td width=”90″>发布选项:</td><br/>           <td> <input name=”ishtml” type=”radio” class=”np” value=”1″ checked="checked"><br/>             生成HTML  <br/>             <input name=”ishtml” type=”radio” class=”np” value=”0″><br/>             仅动态浏览</td><br/></div><br/>修改为:          <br/><div class="code"><br/><td width=”90″>发布选项:</td><br/>           <td> <input name=”ishtml” type=”radio” class=”np” value=”1″><br/>             生成HTML  <br/>             <input name=”ishtml” type=”radio” class=”np” value=”0″ checked="checked"><br/>             仅动态浏览</td></div><br/>刷新一下发布文章页面看看可以了不!用DW可以很直观的修改。<br/><br/>2.如何批量修改动态发布为静态生成,或者反过来修改。<br/>用phpmyadmin打开dede_dede_archives 这个表<br/>ismake这个字段就是我们要修改的对象。<br/>运行sql语句:<br/><br/>UPDATE  dede_archives SET  ismake = ‘-1′  修改所有文档为动态浏览<br/><br/>UPDATE  dede_archives SET  ismake = ‘1′   修改所有文档为静态发布<br/>这样就可以了 </div> <div class="tags" style="display: block"> Tags: <a href="tags/%25E6%258A%2580%25E6%259C%25AF/" title="Tags: 技术" rel="tag">技术</a> , <a href="tags/%25E7%25BD%2591%25E7%25BB%259C/" title="Tags: 网络" rel="tag">网络</a> , <a href="tags/dedecms/" title="Tags: dedecms" rel="tag">dedecms</a> </div> <div class="textbox-bottom"> <a href="category/15/" title="查看分类: 技术">技术</a> | <a href="post/805/#reply" title="发表您的评论">评论(0)</a> | <a href='javascript: void(0);' title="查看引用地址" onclick='showhidediv("tb805");'>引用(0)</a> | <a href="post/805/">阅读(220)</a> </div> <div id="tb805" style="display: none;" class="textbox-tburl"><strong>引用功能被关闭了。</strong></div> </div><div class="textbox"> <div class="textbox-title"> <h4> <span id="starid803"><img src="images/others/unstarred.gif" alt="" title="未加星标" border="0"/></span> <a href="post/803/">开源网络爬虫程序(spider)一览 </a> </h4> <div class="textbox-label"> [<img src="images/weather/blank.gif" alt="不指定" title="不指定"/> 2008/09/04 12:20 | by <a href="user/32/" target="_blank">mlzy</a> ] </div> </div> <div class="textbox-content">  spider是搜索引擎的必须模块.spider数据的结果直接影响到搜索引擎的评价指标.第一个spider程序由MIT的Matthew K Gray操刀该程序的目的是为了统计互联网中主机的数目。WebLech URL Spider.PySolitaire (Python Solita<br/><br/>spider是搜索引擎的必须模块.spider数据的结果直接影响到搜索引擎的评价指标.<br/><br/>第一个spider程序由MIT的Matthew K Gray操刀该程序的目的是为了统计互联网中主机的数目<br/><br/>Spier定义(关于Spider的定义,有广义和狭义两种).<br/><br/>狭义:利用标准的http协议根据超链和web文档检索的方法遍历万维网信息空间的软件程序.<br/>广义:所有能利用http协议检索web文档的软件都称之为spider.<br/>其中Protocol Gives Sites Way To Keep Out The ′Bots Jeremy Carl, Web Week, Volume 1, Issue 7, November 1995 是和spider息息相关的协议,大家有兴趣参考robotstxt.org.<br/><div style="margin-top: 10px;"> <img src="template/Simple Blue/images/readmore.gif" alt=""/> <a href="post/803/#entrymore" title="点击阅读全文">阅读全文</a> </div> </div> <div class="tags" style="display: block"> Tags: <a href="tags/%25E8%25BD%25AC%25E8%25BD%25BD/" title="Tags: 转载" rel="tag">转载</a> , <a href="tags/%25E6%258A%2580%25E6%259C%25AF/" title="Tags: 技术" rel="tag">技术</a> , <a href="tags/%25E7%25BD%2591%25E7%25BB%259C/" title="Tags: 网络" rel="tag">网络</a> , <a href="tags/%25E4%25BA%2592%25E8%2581%2594%25E7%25BD%2591/" title="Tags: 互联网" rel="tag">互联网</a> , <a href="tags/%25E6%2590%259C%25E7%25B4%25A2%25E5%25BC%2595%25E6%2593%258E/" title="Tags: 搜索引擎" rel="tag">搜索引擎</a> , <a href="tags/%25E7%2588%25AC%25E8%2599%25AB/" title="Tags: 爬虫" rel="tag">爬虫</a> </div> <div class="textbox-bottom"> <a href="category/15/" title="查看分类: 技术">技术</a> | <a href="post/803/#reply" title="发表您的评论">评论(0)</a> | <a href='javascript: void(0);' title="查看引用地址" onclick='showhidediv("tb803");'>引用(0)</a> | <a href="post/803/">阅读(195)</a> </div> <div id="tb803" style="display: none;" class="textbox-tburl"><strong>引用功能被关闭了。</strong></div> </div><div class="textbox"> <div class="textbox-title"> <h4> <span id="starid798"><img src="images/others/unstarred.gif" alt="" title="未加星标" border="0"/></span> <a href="post/798/">给dedecms V4/5 增加自定义文件名功能</a> </h4> <div class="textbox-label"> [<img src="images/weather/blank.gif" alt="不指定" title="不指定"/> 2008/08/31 14:30 | by <a href="user/32/" target="_blank">mlzy</a> ] </div> </div> <div class="textbox-content"> 为了更好地实现SEO功能,为了广大的DEDE爱好者不再大伤脑筋,这两天抽了点时间把此功能弄出来跟大家分享。<br/><br/>以下修改能实现DEDE自定义网页文件名的功能,例如:<br/><br/>zi-ding-yi.html/zidingyi.html/defined-pagename.html/自定义某某某.html 等 (注意:Unix类系统不支持中文url。)<br/><br/>(反正你填什么就是什么,除了短横杠连词符号 -,最好别乱填其它特殊符号特别是单、双引号、空格等,以免出错)。<br/><br/>如果你不填自定义文件名,则默认为文章的aid,如:<br/><br/>138.html/65.html 等。<br/><br/>以下皆以文章模型为例作修改。强烈建议初学者在对文件进行修改前备份之。<br/><br/>以下为针对 DEDE V5 的修改:<br/><div style="margin-top: 10px;"> <img src="template/Simple Blue/images/readmore.gif" alt=""/> <a href="post/798/#entrymore" title="点击阅读全文">阅读全文</a> </div> </div> <div class="tags" style="display: block"> Tags: <a href="tags/%25E7%25BD%2591%25E7%25BB%259C/" title="Tags: 网络" rel="tag">网络</a> , <a href="tags/%25E8%25BD%25AC%25E8%25BD%25BD/" title="Tags: 转载" rel="tag">转载</a> , <a href="tags/%25E6%258A%2580%25E6%259C%25AF/" title="Tags: 技术" rel="tag">技术</a> , <a href="tags/dedecms/" title="Tags: dedecms" rel="tag">dedecms</a> </div> <div class="textbox-bottom"> <a href="category/15/" title="查看分类: 技术">技术</a> | <a href="post/798/#reply" title="发表您的评论">评论(0)</a> | <a href='javascript: void(0);' title="查看引用地址" onclick='showhidediv("tb798");'>引用(0)</a> | <a href="post/798/">阅读(242)</a> </div> <div id="tb798" style="display: none;" class="textbox-tburl"><strong>引用功能被关闭了。</strong></div> </div><div class="textbox"> <div class="textbox-title"> <h4> <span id="starid794"><img src="images/others/unstarred.gif" alt="" title="未加星标" border="0"/></span> <a href="post/794/">JieQi 1.5 注册双域名的办法</a> </h4> <div class="textbox-label"> [<img src="images/weather/blank.gif" alt="不指定" title="不指定"/> 2008/08/28 15:15 | by <a href="user/32/" target="_blank">mlzy</a> ] </div> </div> <div class="textbox-content"> <div align="center">这是一篇隐藏日志。您需要以合适的身份登入后才能查看。</div> </div> <div class="tags" style="display: block"> Tags: <a href="tags/%25E7%25BD%2591%25E7%25BB%259C/" title="Tags: 网络" rel="tag">网络</a> , <a href="tags/%25E8%25BD%25AC%25E8%25BD%25BD/" title="Tags: 转载" rel="tag">转载</a> , <a href="tags/%25E6%258A%2580%25E6%259C%25AF/" title="Tags: 技术" rel="tag">技术</a> </div> <div class="textbox-bottom"> <a href="category/15/" title="查看分类: 技术">技术</a> | <a href="post/794/#reply" title="发表您的评论">评论(0)</a> | <a href='javascript: void(0);' title="查看引用地址" onclick='showhidediv("tb794");'>引用(0)</a> | <a href="post/794/">阅读(1)</a> </div> <div id="tb794" style="display: none;" class="textbox-tburl"><strong>引用功能被关闭了。</strong></div> </div><div class="textbox"> <div class="textbox-title"> <h4> <span id="starid789"><img src="images/others/unstarred.gif" alt="" title="未加星标" border="0"/></span> <a href="post/789/">汇率API网站</a> </h4> <div class="textbox-label"> [<img src="images/weather/blank.gif" alt="不指定" title="不指定"/> 2008/08/27 14:13 | by <a href="user/32/" target="_blank">mlzy</a> ] </div> </div> <div class="textbox-content"> 该网站允许技术人员将各国汇率定制成代码放在自己博客或者网站上,可以显示定制的汇率表<br/><br/>地址:<a href="http://xurrency.com/api" target="_blank">http://xurrency.com/api</a> </div> <div class="tags" style="display: block"> Tags: <a href="tags/%25E6%258A%2580%25E6%259C%25AF/" title="Tags: 技术" rel="tag">技术</a> , <a href="tags/%25E4%25BA%2592%25E8%2581%2594%25E7%25BD%2591/" title="Tags: 互联网" rel="tag">互联网</a> , <a href="tags/%25E7%25BD%2591%25E7%25BB%259C/" title="Tags: 网络" rel="tag">网络</a> , <a href="tags/%25E6%25B1%2587%25E7%258E%2587/" title="Tags: 汇率" rel="tag">汇率</a> , <a href="tags/%25E5%25A4%2596%25E6%25B1%2587/" title="Tags: 外汇" rel="tag">外汇</a> </div> <div class="textbox-bottom"> <a href="category/15/" title="查看分类: 技术">技术</a> | <a href="post/789/#reply" title="发表您的评论">评论(0)</a> | <a href='javascript: void(0);' title="查看引用地址" onclick='showhidediv("tb789");'>引用(0)</a> | <a href="post/789/">阅读(424)</a> </div> <div id="tb789" style="display: none;" class="textbox-tburl"><strong>引用功能被关闭了。</strong></div> </div><div class="textbox"> <div class="textbox-title"> <h4> <span id="starid784"><img src="images/others/unstarred.gif" alt="" title="未加星标" border="0"/></span> <a href="post/784/">Linux必学60个命令文件处理</a> </h4> <div class="textbox-label"> [<img src="images/weather/blank.gif" alt="不指定" title="不指定"/> 2008/08/25 20:10 | by <a href="user/32/" target="_blank">mlzy</a> ] </div> </div> <div class="textbox-content"> 系统信息存放在文件里,文件与普通的公务文件类似。每个文件都有自己的名字、内容、存放地址及其它一些管理信息,如文件的用户、文件的大小等。文件可以是一封信、一个通讯录,或者是程序的源语句、程序的数据,甚至可以包括可执行的程序和其它非正文内容。 Linux文件系统具有良好的结构,系统提供了很多文件处理程序。这里主要介绍常用的文件处理命令。<br/><br/>  file<br/><br/>  1.作用<br/><br/>  file通过探测文件内容判断文件类型,使用权限是所有用户。<br/><br/>  2.格式<br/><br/>  file [options] 文件名<br/><br/>  3.[options]主要参数<br/><br/>  -v:在标准输出后显示版本信息,并且退出。<br/><br/>  -z:探测压缩过的文件类型。<br/><br/>  -L:允许符合连接。<br/><br/>  -f name:从文件namefile中读取要分析的文件名列表。<br/><br/>  4.简单说明<br/><br/>  使用file命令可以知道某个文件究竟是二进制(ELF格式)的可执行文件, 还是Shell Script文件,或者是其它的什么格式。file能识别的文件类型有目录、Shell脚本、英文文本、二进制可执行文件、C语言源文件、文本文件、DOS的可执行文件。<br/><div style="margin-top: 10px;"> <img src="template/Simple Blue/images/readmore.gif" alt=""/> <a href="post/784/#entrymore" title="点击阅读全文">阅读全文</a> </div> </div> <div class="tags" style="display: block"> Tags: <a href="tags/%25E6%258A%2580%25E6%259C%25AF/" title="Tags: 技术" rel="tag">技术</a> , <a href="tags/%25E4%25BA%2592%25E8%2581%2594%25E7%25BD%2591/" title="Tags: 互联网" rel="tag">互联网</a> , <a href="tags/linux/" title="Tags: linux" rel="tag">linux</a> </div> <div class="textbox-bottom"> <a href="category/15/" title="查看分类: 技术">技术</a> | <a href="post/784/#reply" title="发表您的评论">评论(0)</a> | <a href='javascript: void(0);' title="查看引用地址" onclick='showhidediv("tb784");'>引用(0)</a> | <a href="post/784/">阅读(196)</a> </div> <div id="tb784" style="display: none;" class="textbox-tburl"><strong>引用功能被关闭了。</strong></div> </div><div class="textbox"> <div class="textbox-title"> <h4> <span id="starid783"><img src="images/others/unstarred.gif" alt="" title="未加星标" border="0"/></span> <a href="post/783/">ICON图标下载地址汇总</a> </h4> <div class="textbox-label"> [<img src="images/weather/blank.gif" alt="不指定" title="不指定"/> 2008/08/24 13:06 | by <a href="user/32/" target="_blank">mlzy</a> ] </div> </div> <div class="textbox-content"> <p><div style="margin-top: 10px;"> <img src="template/Simple Blue/images/readmore.gif" alt=""/> <a href="post/783/#entrymore" title="点击阅读全文">阅读全文</a> </div> </div> <div class="tags" style="display: block"> Tags: <a href="tags/%25E8%25BD%25AC%25E8%25BD%25BD/" title="Tags: 转载" rel="tag">转载</a> , <a href="tags/%25E6%258A%2580%25E6%259C%25AF/" title="Tags: 技术" rel="tag">技术</a> , <a href="tags/%25E4%25BA%2592%25E8%2581%2594%25E7%25BD%2591/" title="Tags: 互联网" rel="tag">互联网</a> </div> <div class="textbox-bottom"> <a href="category/15/" title="查看分类: 技术">技术</a> | <a href="post/783/#reply" title="发表您的评论">评论(0)</a> | <a href='javascript: void(0);' title="查看引用地址" onclick='showhidediv("tb783");'>引用(0)</a> | <a href="post/783/">阅读(252)</a> </div> <div id="tb783" style="display: none;" class="textbox-tburl"><strong>引用功能被关闭了。</strong></div> </div><div class="textbox"> <div class="textbox-title"> <h4> <span id="starid782"><img src="images/others/unstarred.gif" alt="" title="未加星标" border="0"/></span> <a href="post/782/">Mysql命令集锦</a> </h4> <div class="textbox-label"> [<img src="images/weather/blank.gif" alt="不指定" title="不指定"/> 2008/08/23 17:45 | by <a href="user/32/" target="_blank">mlzy</a> ] </div> </div> <div class="textbox-content"> <p><div style="margin-top: 10px;"> <img src="template/Simple Blue/images/readmore.gif" alt=""/> <a href="post/782/#entrymore" title="点击阅读全文">阅读全文</a> </div> </div> <div class="tags" style="display: block"> Tags: <a href="tags/%25E8%25BD%25AC%25E8%25BD%25BD/" title="Tags: 转载" rel="tag">转载</a> , <a href="tags/%25E5%25AD%25A6%25E4%25B9%25A0/" title="Tags: 学习" rel="tag">学习</a> , <a href="tags/%25E7%25BD%2591%25E7%25BB%259C/" title="Tags: 网络" rel="tag">网络</a> , <a href="tags/%25E6%258A%2580%25E6%259C%25AF/" title="Tags: 技术" rel="tag">技术</a> , <a href="tags/%25E4%25BA%2592%25E8%2581%2594%25E7%25BD%2591/" title="Tags: 互联网" rel="tag">互联网</a> , <a href="tags/mysql/" title="Tags: mysql" rel="tag">mysql</a> </div> <div class="textbox-bottom"> <a href="category/15/" title="查看分类: 技术">技术</a> | <a href="post/782/#reply" title="发表您的评论">评论(0)</a> | <a href='javascript: void(0);' title="查看引用地址" onclick='showhidediv("tb782");'>引用(0)</a> | <a href="post/782/">阅读(186)</a> </div> <div id="tb782" style="display: none;" class="textbox-tburl"><strong>引用功能被关闭了。</strong></div> </div> <div class="article-bottom" style="display: block"> <div class="pages"> <span class="pagebar-mainbody"> 分页: 3/8 <a href="category/15/1/1/"><img src="images/arrows/doubleleft.gif" alt="第一页" title="第一页" border="0"/></a> <a href="category/15/1/2/"><img src="images/arrows/singleleft.gif" alt="上页" title="上页" border="0"/></a> <span class="pagebar-selections"> <a href="category/15/1/1/">1</a> <a href="category/15/1/2/">2</a> <span class="pagelink-current">3</span> <a href="category/15/1/4/">4</a> <a href="category/15/1/5/">5</a> <a href="category/15/1/6/">6</a> <a href="category/15/1/7/">7</a> <a href="category/15/1/8/">8</a> </span> <a href="category/15/1/4/"><img src="images/arrows/singleright.gif" alt="下页" title="下页" border="0"/></a> <a href="category/15/1/8/"><img src="images/arrows/doubleright.gif" alt="最后页" title="最后页" border="0"/></a> </span> [ 显示模式: <a href="category/15/1/1/" title="切换到摘要模式">摘要</a> | <a href="category/15/2/1/" title="切换到列表模式">列表</a> ] </div> </div> </div> </div> <div id="sidebar" class="sidebar"> <div id="innerSidebar"> <div class="panel"> <h5 onclick='showhidediv("sidebar_2008 Olympic");'>天气预报</h5> <div class="panel-content" id="sidebar_2008 Olympic" style="display: block"> <iframe src="http://www.265.com/weather.htm" width="168" height="50" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" name="265"></iframe> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_announcement");'>与我联系</h5> <div class="panel-content" id="sidebar_announcement" style="display: block"> <br /> <img src="http://www.mlzy.net/attachment/mlzy@live.png" > </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_search");'>搜索</h5> <div class="panel-content" id="sidebar_search" style="display: block"> <form method="post" action="visit.php"> <input name="job" type="hidden" value="search"/> <input name="keyword" class="search-field" type="text"/> <select name="searchmethod"><option value="1">日志标题</option><option value="2">日志全文</option><option value="3">评论引用</option><option value="4">所有留言</option><option value="5">Tags</option></select> <input value="搜索" class="button" type="submit"/> </form> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_entries");'>最新日志</h5> <div class="panel-content" id="sidebar_entries" style="display: block"> <ul><li class='rowcouple'><a href="post/912/" title="更新了订阅功能">更新了订阅功能</a></li><li class='rowodd'><a href="post/911/" title="Gmail新增主题设置功能">Gmail新增主题设置功...</a></li><li class='rowcouple'><a href="post/910/" title="耗资2320万美元仅为装修天花板,联合国没有金融危机">耗资2320万美元仅为装...</a></li><li class='rowodd'><a href="post/909/" title="百度在上海不具备广告经营资格?请看上海工商局答复">百度在上海不具备广告经营...</a></li><li class='rowcouple'><a href="post/908/" title="郭沫若的人格问题——小时候被他欺负过的同学们可以来看看了">郭沫若的人格问题——小时...</a></li><li class='rowodd'><a href="post/907/" title="百度图片成为黄窟——百度的美女榜第一位—张筱雨">百度图片成为黄窟——百度...</a></li><li class='rowcouple'><a href="post/906/" title="酒桌上的潜规则,男人必学">酒桌上的潜规则,男人必学</a></li><li class='rowodd'><a href="post/905/" title="百度栽赃陷害谷歌证据被网友曝光:人工修改搜索结果,黑白颠倒">百度栽赃陷害谷歌证据被网...</a></li></ul> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_replies");'>最新评论</h5> <div class="panel-content" id="sidebar_replies" style="display: block"> <ul><li class='rowcouple'><a href="post/911/#blogcomment5018" title="[cake] - Gmail新增主题设置功能">哈 我也发现了~!</a></li><li class='rowodd'><a href="post/902/#blogcomment5017" title="[丫丫/程] - 简单好吃的牛腩">真佩服你能准备这么多配料...</a></li><li class='rowcouple'><a href="post/906/#blogcomment5016" title="[cake] - 酒桌上的潜规则,男人必学">恐怖 我就不喝 爱谁谁</a></li><li class='rowodd'><a href="sogou_pornographic_pictures/#blogcomment5015" title="[cake] - 搜狗——更懂色情">第二行第二个都畸形了。。...</a></li><li class='rowcouple'><a href="free-softwares/#blogcomment5014" title="[cake] - 买不起商业软件,又不想用盗版,那就收藏这个名单吧!">感觉foxit就比ado...</a></li></ul> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_now3hotview");'>季度点击排行</h5> <div class="panel-content" id="sidebar_now3hotview" style="display: block"> <ul><li>[517]<a href="read.php?808" title="中搜完了">中搜完了</a></li><li>[417]<a href="read.php?801" title="提问的艺术">提问的艺术</a></li><li>[412]<a href="read.php?804" title="女教师课上教学生别网聊 课后见网友被强暴">女教师课上教学生别...</a></li><li>[408]<a href="read.php?816" title="从搜狐子频道用了DedeCms后的遐想">从搜狐子频道用了D...</a></li><li>[366]<a href="read.php?901" title="又一大型bttorrent网站被关闭:国际版权保护运动方兴未艾">又一大型bttor...</a></li><li>[361]<a href="read.php?823" title="在word2007中使用MathType5.0(公式编辑器)">在word2007...</a></li><li>[360]<a href="read.php?800" title="王震将军简传">王震将军简传</a></li><li>[355]<a href="read.php?828" title="流星*蝴蝶*剑">流星*蝴蝶*剑</a></li></ul> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_allhotview");'>综合点击排行</h5> <div class="panel-content" id="sidebar_allhotview" style="display: block"> <ul><li>[20859]<a href="post/40/">正确的念书方法以...</a></li><li>[15790]<a href="post/125/">汇率走势曲线图(...</a></li><li>[12073]<a href="post/127/">课堂里学不到的英...</a></li><li>[8827]<a href="post/65/">成功格言176条—...</a></li><li>[8164]<a href="post/385/">三角函数公式大全</a></li><li>[7603]<a href="post/213/">前几天过生日的照片</a></li><li>[7228]<a href="post/156/">Macquarie...</a></li><li>[6397]<a href="post/241/">红烧肉的N种做法</a></li></ul> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_RandArticle");'>随机日志</h5> <div class="panel-content" id="sidebar_RandArticle" style="display: block"> <ul><li class="rowcouple"><a href="read.php?692" title="重视优化 更要重视网站自身的内容及功能">重视优化 更要重视网站自...</a></li><li class="rowodd"><a href="read.php?860" title="去掉陶瓷或塑料器具上粘贴的标签">去掉陶瓷或塑料器具上粘贴...</a></li><li class="rowcouple"><a href="read.php?480" title="08年高考0分作文一篇">08年高考0分作文一篇</a></li><li class="rowodd"><a href="read.php?45" title="索罗斯的七条投资法则">索罗斯的七条投资法则</a></li><li class="rowcouple"><a href="read.php?43" title="高尔基读书法">高尔基读书法</a></li><li class="rowodd"><a href="read.php?270" title="美女的等级划分">美女的等级划分</a></li><li class="rowcouple"><a href="read.php?261" title="用openssh建立ssh服务器的基本步骤">用openssh建立ss...</a></li><li class="rowodd"><a href="read.php?810" title="html代码大全">html代码大全</a></li></ul> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_add to feed");'>订阅博客</h5> <div class="panel-content" id="sidebar_add to feed" style="display: block"> <!-- Feedsky FEED发布代码开始 --> <!-- FEED自动发现标记开始 --> <link title="RSS 2.0" type="application/rss+xml" href="http://feed.feedsky.com/mlzy" rel="alternate" /> <!-- FEED自动发现标记结束 --> <a href="http://feed.feedsky.com/mlzy" target="_blank"><img border="0" src="http://img.feedsky.com/images/icon_sub_c1s16.gif" alt="feedsky" vspace="2" style="margin-bottom:3px" ></a><br /> <a href="http://www.zhuaxia.com/add_channel.php?url=http://feed.feedsky.com/mlzy" target="_blank"><img border="0" src="http://img.feedsky.com/images/icon_subshot02_zhuaxia.gif" alt="抓虾" vspace="2" style="margin-bottom:3px" ></a><br /> <a href="http://fusion.google.com/add?feedurl=http://feed.feedsky.com/mlzy" target="_blank"><img border="0" src="http://img.feedsky.com/images/icon_subshot02_google.gif" alt="google reader" vspace="2" style="margin-bottom:3px" ></a><br /> <a href="http://www.xianguo.com/subscribe.php?url=http://feed.feedsky.com/mlzy" target="_blank"><img border="0" src="http://img.feedsky.com/images/icon_subshot02_xianguo.jpg" alt="鲜果" vspace="2" style="margin-bottom:3px" ></a><br /> <a href="http://inezha.com/add?url=http://feed.feedsky.com/mlzy" target="_blank"><img border="0" src="http://img.feedsky.com/images/icon_subshot02_nazha.gif" alt="哪吒" vspace="2" style="margin-bottom:3px" ></a><br /> <!-- Feedsky FEED发布代码结束 --> <!-- Feedsky FEED发布代码开始 --> <!-- FEED自动发现标记开始 --> <link title="RSS 2.0" type="application/rss+xml" href="http://feed.feedsky.com/mlzy" rel="alternate" /> <!-- FEED自动发现标记结束 --> <a href="http://wap.feedsky.com/mlzy"><img border="0" src="http://img.feedsky.com/images/icon_sub_mobile_c1s1.gif" alt="http://wap.feedsky.com/mlzy" vspace="2" ></a> <!-- Feedsky FEED发布代码结束 --> <br /> <!-- Feedsky FEED 订阅统计发布代码开始 --> <a href="http://feed.feedsky.com/mlzy" title="牧龙在野" target="_blank"><img src="http://www.feedsky.com/feed/mlzy/sc/orange.gif" style="border:0" alt="" /></a> <!-- Feedsky FEED 订阅统计发布代码结束 --> <script language="javascript" type="text/javascript" src="http://www.feedsky.com/msub_ajax_sub_js.html?burl=mlzy&t=1&c=orange"></script> </div> </div><div id='panelCategory' class="panel"> <h5 style="cursor: pointer" onclick='showhidediv("sideblock_category");'>分类</h5> <div class="panel-content" id="sideblock_category" style="display: block"> <ul><li><a href="category/0/" title="关于网络,关于IT">网络</a> [115] <a href="feed.php?go=category_0"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/1/" title="经济视角">经济</a> [43] <a href="feed.php?go=category_1"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/2/" title="一个具有争议的人,有一个具有争议的生活。很多人可以在这里看到我过去一些荒唐事,也有很多人可以挖出来非常多的八卦信息。不过这就是我的生活,我开始的时候,是想隐瞒,后来想想,无所谓了,毕竟自己是个大活人,想欺骗一个人或者一些人,需要不停的创造出来新的谎言去弥补。所以我选择面对~无论如何,我就是这么一个人,荒唐~ 荒唐的人有着荒唐的思想和荒唐的故事。">生活</a> [164] <a href="feed.php?go=category_2"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/3/" title="色影无忌">照片</a> [26] <a href="feed.php?go=category_3"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/4/" title="有关文化的一些东西">文化</a> [18] <a href="feed.php?go=category_4"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/5/" title="什么是成功?">成功</a> [20] <a href="feed.php?go=category_5"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/6/" title="如何自律?">自律</a> [7] <a href="feed.php?go=category_6"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/7/" title="合理安排自己的时间">时间</a> [10] <a href="feed.php?go=category_7"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/8/" title="读书以修身">读书</a> [33] <a href="feed.php?go=category_8"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/9/" title="学习的方法">学习</a> [43] <a href="feed.php?go=category_9"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/10/" title="人际关系的处理">人际</a> [6] <a href="feed.php?go=category_10"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/11/" title="作为一个领导者,如何做好管理工作?">管理</a> [6] <a href="feed.php?go=category_11"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/12/" title="如何投资">投资</a> [11] <a href="feed.php?go=category_12"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/13/" title="努力做好菜">菜谱</a> [10] <a href="feed.php?go=category_13"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/14/" title="喜欢的歌曲和音乐">音乐</a> [12] <a href="feed.php?go=category_14"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/15/" title="IT TECH此分类中文章绝大部分为转载(配有评论的话,应该都是我的评论)。有些文章没有写上来源,可能是来自 www.admin5.com 的,在这里道歉下~ 希望大家能够见谅。。本人还是非常尊重别人版权的。。。"><strong>技术</strong></a> [74] <a href="feed.php?go=category_15"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/16/" title="大部分都是原创,如果没有注明是“转载”,肯定是原创啦">文字</a> [22] <a href="feed.php?go=category_16"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/17/" title="搜索引擎优化">SEO</a> [249] <a href="feed.php?go=category_17"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/18/" title="记录真实的历史;或者被人称为真实的历史">历史</a> [5] <a href="feed.php?go=category_18"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/19/" title="搞笑,囧......">恶搞</a> [15] <a href="feed.php?go=category_19"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/20/" title="转载文章">美文</a> [0] <a href="feed.php?go=category_20"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/21/" title="源代码和软件下载。只提供开源软件。">源码</a> [4] <a href="feed.php?go=category_21"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li></ul> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_misc");'>其他</h5> <div class="panel-content" id="sidebar_misc" style="display: block"> <a href='login.php'>登入</a><br/><a href='login.php?job=register'>注册</a><br/><a href='login.php?job=applylink'>申请链接</a><br/>RSS: <a href='feed.php'>日志</a> | <a href='feed.php?go=comment'>评论</a><br/>编码:UTF-8<br/><a href="http://validator.w3.org/check?uri=referer" target="_blank">XHTML 1.0</a> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_archive");'>归档</h5> <div class="panel-content" id="sidebar_archive" style="display: block"> <ul><li><a href="archiver/11/2008/" rel="noindex,nofollow">2008/11</a></li> <li><a href="archiver/10/2008/" rel="noindex,nofollow">2008/10</a></li> <li><a href="archiver/9/2008/" rel="noindex,nofollow">2008/09</a></li> <li><a href="archiver/8/2008/" rel="noindex,nofollow">2008/08</a></li> <li><a href="archiver/7/2008/" rel="noindex,nofollow">2008/07</a></li></ul> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_statistics");'>统计</h5> <div class="panel-content" id="sidebar_statistics" style="display: block"> 访问次数 1316050<br/>今日访问 701<br/>日志数量 893<br/><a href="view.php?go=comment">评论数量 714</a><br/><a href="view.php?go=userlist">注册用户 411</a><br/>在线人数 41<br/> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_calendar");'>日历</h5> <div class="panel-content" id="sidebar_calendar" style="display: block"> <table id="calendar" cellspacing="1" width="100%"> <tbody><tr><td colspan="7" class="calendar-top"> <a href="archiver/11/2007/" rel="noindex,nofollow"><</a> <a href="archive.php" rel="noindex,nofollow"><span class="calendar-year">2008</span></a> <a href="archiver/11/2009/" rel="noindex,nofollow">></a>    <a href="archiver/10/2008/" rel="noindex,nofollow"><</a> <a href="archiver/11/2008/" rel="noindex,nofollow"><span class="calendar-month">11</span></a> <a href="archiver/12/2008/" rel="noindex,nofollow">></a><br/>戊子年(鼠) </td></tr> <tr class="calendar-weekdays"> <td class="calendar-weekday-cell">日</td> <td class="calendar-weekday-cell">一</td> <td class="calendar-weekday-cell">二</td> <td class="calendar-weekday-cell">三</td> <td class="calendar-weekday-cell">四</td> <td class="calendar-weekday-cell">五</td> <td class="calendar-weekday-cell">六</td> </tr> <tr class="calendar-weekdays"><td class="calendar-sunday"><span title=''></span></td><td class="calendar-day"><span title=''></span></td><td class="calendar-day"><span title=''></span></td><td class="calendar-day"><span title=''></span></td><td class="calendar-day"><span title=''></span></td><td class="calendar-day"><span title=''></span></td><td id="cal1" class="calendar-saturday"><span title='初四'><a href="date/2008/11/1/" rel="noindex,nofollow">1</a></span></td></tr><tr class="calendar-weekdays"><td id="cal2" class="calendar-sunday"><span title='初五'><a href="date/2008/11/2/" rel="noindex,nofollow">2</a></span></td><td id="cal3" class="calendar-day"><span title='初六'><a href="date/2008/11/3/" rel="noindex,nofollow">3</a></span></td><td id="cal4" class="calendar-day"><span title='初七'><a href="date/2008/11/4/" rel="noindex,nofollow">4</a></span></td><td id="cal5" class="calendar-day"><span title='初八'><a href="date/2008/11/5/" rel="noindex,nofollow">5</a></span></td><td id="cal6" class="calendar-day"><span title='初九'><a href="date/2008/11/6/" rel="noindex,nofollow">6</a></span></td><td id="cal7" class="calendar-day"><span title='初十'><a href="date/2008/11/7/" rel="noindex,nofollow">7</a></span></td><td id="cal8" class="calendar-saturday"><span title='十一'><a href="date/2008/11/8/" rel="noindex,nofollow">8</a></span></td></tr><tr class="calendar-weekdays"><td id="cal9" class="calendar-sunday"><span title='十二'><a href="date/2008/11/9/" rel="noindex,nofollow">9</a></span></td><td id="cal10" class="calendar-day"><span title='十三'><a href="date/2008/11/10/" rel="noindex,nofollow">10</a></span></td><td id="cal11" class="calendar-day"><span title='十四'>11</span></td><td id="cal12" class="calendar-day"><span title='十五'><a href="date/2008/11/12/" rel="noindex,nofollow">12</a></span></td><td id="cal13" class="calendar-day"><span title='十六'><a href="date/2008/11/13/" rel="noindex,nofollow">13</a></span></td><td id="cal14" class="calendar-day"><span title='十七'><a href="date/2008/11/14/" rel="noindex,nofollow">14</a></span></td><td id="cal15" class="calendar-saturday"><span title='十八'>15</span></td></tr><tr class="calendar-weekdays"><td id="cal16" class="calendar-sunday"><span title='十九'><a href="date/2008/11/16/" rel="noindex,nofollow">16</a></span></td><td id="cal17" class="calendar-day"><span title='二十'><a href="date/2008/11/17/" rel="noindex,nofollow">17</a></span></td><td id="cal18" class="calendar-day"><span title='廿一'><a href="date/2008/11/18/" rel="noindex,nofollow">18</a></span></td><td id="cal19" class="calendar-day"><span title='廿二'><a href="date/2008/11/19/" rel="noindex,nofollow">19</a></span></td><td id="cal20" class="calendar-day"><span title='廿三'>20</span></td><td id="cal21" class="calendar-day"><span title='廿四'><a href="date/2008/11/21/" rel="noindex,nofollow">21</a></span></td><td id="cal22" class="calendar-today"><span title='廿五'><a href="date/2008/11/22/" rel="noindex,nofollow">22</a></span></td></tr><tr class="calendar-weekdays"><td id="cal23" class="calendar-sunday"><span title='廿六'>23</span></td><td id="cal24" class="calendar-day"><span title='廿七'>24</span></td><td id="cal25" class="calendar-day"><span title='廿八'>25</span></td><td id="cal26" class="calendar-day"><span title='廿九'>26</span></td><td id="cal27" class="calendar-day"><span title='三十'>27</span></td><td id="cal28" class="calendar-day"><span title='十一'>28</span></td><td id="cal29" class="calendar-saturday"><span title='初二'>29</span></td></tr><tr class="calendar-weekdays"><td id="cal30" class="calendar-sunday"><span title='初三'>30</span></td><td class="calendar-day"><span title=''></span></td><td class="calendar-day"><span title=''></span></td><td class="calendar-day"><span title=''></span></td><td class="calendar-day"><span title=''></span></td><td class="calendar-day"><span title=''></span></td><td class="calendar-saturday"><span title=''></span></td></tr> </tbody></table> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_Rank");'>全球排名</h5> <div class="panel-content" id="sidebar_Rank" style="display: block"> <center><SCRIPT type='text/javascript' language='JavaScript' src='http://xslt.alexa.com/site_stats/js/s/a?url=www.mlzy.net'></SCRIPT></center> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_License");'>版权声明</h5> <div class="panel-content" id="sidebar_License" style="display: block"> <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/2.5/cn/"><img alt="Creative Commons License" style="border-width:0" src="http://creativecommons.org/images/public/somerights20.png"/></a><br/> <a xmlns:cc="http://creativecommons.org/ns#" href="http://www.mlzy.net" property="cc:attributionName" rel="cc:attributionURL">牧龙在野!</a> 作品采用 <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/2.5/cn/">Creative Commons 署名-非商业性使用-禁止演绎 2.5 中国大陆 License</a>. </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_tongji");'>流量统计</h5> <div class="panel-content" id="sidebar_tongji" style="display: block"> <script language="javascript" type="text/javascript" src="http://quote.51.la/?id=1738150&mb=4"></script> </div> </div> </div> </div> </div> <div id="footer"> <div id="innerFooter"> Powered by <a href="http://www.bo-blog.com" target="_blank">Bo-Blog 2.1.0</a><span id="footer-security"><a href="http://www.cnbct.org" target="_blank" title="Code detection by Bug.Center.Team"><img src="images/others/detect.gif" alt="Code detection by Bug.Center.Team" border="0" /></a></span><span id="nav_http_3A_2F_2Fwww.miibeian.gov.cn"><a href="http://www.miibeian.gov.cn" target="_blank"><span id="navitem_http_3A_2F_2Fwww.miibeian.gov.cn"><br/>京ICP备06001274号</span></a></span><center><script type='text/javascript' src='http://track2.mybloglog.com/js/jsserv.php?mblID=2006101504374329'></script></center><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _uacct = "UA-622943-2"; urchinTracker(); </script><center><script language="javascript" type="text/javascript" src="http://js.users.51.la/1738150.js"></script> <noscript><a href="http://www.51.la/?1738150" target="_blank"><img alt="我要啦免费统计" src="http://img.users.51.la/1738150.asp" style="border:none" /></a></noscript> </center> <br> <script type="text/JavaScript"> alimama_domain_auth="103918_10769323"; </script> <div id="processtime"> </div> </div> </div> </div> </div> <script type="text/javascript"> loadSidebar(); </script> <script type='text/javascript'> //<![CDATA[ if (document.getElementById('processtime')) document.getElementById('processtime').innerHTML="<span class='runtimedisplay'>Run in 177 ms, 7 Queries, Gzip enabled.</span>"; //]]> </script></body> </html>