<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[特蓝克斯]]></title> 
<link>http://www.54php.com/index.php</link> 
<description><![CDATA[因为专业所以出众 因为专注所以成功! ]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[特蓝克斯]]></copyright>
<item>
<link>http://www.54php.com/post/236/</link>
<title><![CDATA[笑话]]></title> 
<author>特蓝克斯 &lt;asen477@163.com&gt;</author>
<category><![CDATA[生活]]></category>
<pubDate>Thu, 28 Aug 2008 02:07:03 +0000</pubDate> 
<guid>http://www.54php.com/post/236/</guid> 
<description>
<![CDATA[ 
	1 一个男人走到前台，只对我说了一句，“你先给我找个座。” <br/>2 顾客冲进来直奔前台 ：“小姐,给我来一个莫斯科鸡肉卷。” <br/>　　我：“对不起,我们只有墨西哥和老北京的。” <br/>　　顾客:“……那我要莫斯科的。” <br/>　　我：…… <br/>3 中年妇女过来点餐：“给我一个麦当劳。” <br/>　　我：“不好意思，我们这是肯德基。” <br/>　　女：“哦！那给我来个肯德基。” <br/>　　我：无语，掉头我就走了，实在不知道怎么跟她说了…… <br/>............<br/><br/>Tags - <a href="http://www.54php.com/tags/%25E7%25AC%2591%25E8%25AF%259D/" rel="tag">笑话</a>
]]>
</description>
</item><item>
<link>http://www.54php.com/post/235/</link>
<title><![CDATA[Robots Meta标签及其用法]]></title> 
<author>特蓝克斯 &lt;asen477@163.com&gt;</author>
<category><![CDATA[SEO]]></category>
<pubDate>Wed, 27 Aug 2008 04:26:37 +0000</pubDate> 
<guid>http://www.54php.com/post/235/</guid> 
<description>
<![CDATA[ 
	Robots Meta应该放置在网页的什么位置呢？<br/><br/>跟任何一种META标签是一样的，Robots Meta放置在HTML网页代码的HEAD之内。<br/><br/>&lt;html&gt;<br/>&lt;head&gt;<br/>&lt;meta name=&quot;robots&quot; content=&quot;noindex,nofollow&quot;&gt;<br/>&lt;meta name=&quot;description&quot; content=&quot;This page ....&quot;&gt;<br/>&lt;title&gt;...&lt;/title&gt;<br/>&lt;/head&gt;<br/>&lt;body&gt;...<br/><br/><br/>怎么使用Robots Meta标签？<br/><br/>例如：<br/><br/>&lt;meta name=&quot;robots&quot; content=&quot;index,follow&quot;&gt;<br/>&lt;meta name=&quot;robots&quot; content=&quot;noindex,follow&quot;&gt;<br/>&lt;meta name=&quot;robots&quot; content=&quot;index,nofollow&quot;&gt;<br/>&lt;meta name=&quot;robots&quot; content=&quot;noindex,nofollow&quot;&gt;<br/><br/>当content需要包含多个属性的时候需要用英文逗号隔离，注意同种属性正反两个方面（例如：index与noindex）不能同时出现在content之中。<br/>............<br/><br/>Tags - <a href="http://www.54php.com/tags/seo/" rel="tag">seo</a> , <a href="http://www.54php.com/tags/robots/" rel="tag">robots</a> , <a href="http://www.54php.com/tags/meta%25E6%25A0%2587%25E7%25AD%25BE%25E5%258F%258A%25E5%2585%25B6%25E7%2594%25A8%25E6%25B3%2595/" rel="tag">meta标签及其用法</a>
]]>
</description>
</item><item>
<link>http://www.54php.com/post/234/</link>
<title><![CDATA[Apache rewrite规则]]></title> 
<author>特蓝克斯 &lt;asen477@163.com&gt;</author>
<category><![CDATA[Apache]]></category>
<pubDate>Mon, 25 Aug 2008 04:35:19 +0000</pubDate> 
<guid>http://www.54php.com/post/234/</guid> 
<description>
<![CDATA[ 
	1、Rewrite规则简介: <br/>Rewirte主要的功能就是实现URL的跳转，它的正则表达式是基于Perl语言。可基于服务器级的(httpd.conf)和目录级的 (.htaccess)两种方式。如果要想用到rewrite模块，必须先安装或加载rewrite模块。方法有两种一种是编译apache的时候就直接安装rewrite模块，别一种是编译apache时以DSO模式安装apache,然后再利用源码和apxs来安装rewrite模块。 <br/>基于服务器级的(httpd.conf)有两种方法，一种是在httpd.conf的全局下直接利用RewriteEngine on来打开rewrite功能;另一种是在局部里利用RewriteEngine on来打开rewrite功能,下面将会举例说明，需要注意的是,必须在每个virtualhost里用RewriteEngine on来打开rewrite功能。否则virtualhost里没有RewriteEngine on它里面的规则也不会生效。 <br/>基于目录级的(.htaccess),要注意一点那就是必须打开此目录的FollowSymLinks属性且在.htaccess里要声明RewriteEngine on。 <br/><br/>2、举例说明： <br/>下面是在一个虚拟主机里定义的规则。功能是把client请求的主机前缀不是www.colorme.com和203.81.23.202都跳转到主机前缀为http://www.colorme.com.cn，避免当用户在地址栏写入http://colorme.com.cn时不能以会员方式登录网站。 <br/>NameVirtualHost 192.168.100.8:80 <br/>&lt;VirtualHost 192.168.100.8:80&gt; <br/>ServerAdmin webmaster@colorme.com.cn <br/>DocumentRoot &quot;/web/webapp&quot; <br/>ServerName www.colorme.com.cn <br/>ServerName colorme.com.cn <br/>RewriteEngine on #打开rewirte功能 <br/>RewriteCond %&#123;HTTP_HOST&#125; !^www.colorme.com.cn [NC] #声明Client请求的主机中前缀不是www.colorme.com.cn,[NC]的意思是忽略大小写 <br/>RewriteCond %&#123;HTTP_HOST&#125; !^203.81.23.202 [NC] #声明Client请求的主机中前缀不是203.81.23.202,[NC]的意思是忽略大小写 <br/>RewriteCond %&#123;HTTP_HOST&#125; !^$ #声明Client请求的主机中前缀不为空,[NC]的意思是忽略大小写 <br/>RewriteRule ^/(.*) http://www.colorme.com.cn/ [L] #含义是如果Client请求的主机中的前缀符合上述条件，则直接进行跳转到http://www.colorme.com.cn/, [L]意味着立即停止重写操作，并不再应用其他重写规则。这里的.*是指匹配所有URL中不包含换行字符，()括号的功能是把所有的字符做一个标记，以便于后面的应用.就是引用前面里的(.*)字符。 <br/>&lt;/VirtualHost&gt;<br/>............<br/><br/>Tags - <a href="http://www.54php.com/tags/apache/" rel="tag">apache</a> , <a href="http://www.54php.com/tags/rewrite%25E8%25A7%2584%25E5%2588%2599/" rel="tag">rewrite规则</a>
]]>
</description>
</item><item>
<link>http://www.54php.com/post/233/</link>
<title><![CDATA[视频: 【最终幻想Versus13】CLOUD宣传片]]></title> 
<author>特蓝克斯 &lt;asen477@163.com&gt;</author>
<category><![CDATA[movie]]></category>
<pubDate>Sun, 24 Aug 2008 01:55:04 +0000</pubDate> 
<guid>http://www.54php.com/post/233/</guid> 
<description>
<![CDATA[ 
	<embed src="http://player.youku.com/player.php/sid/XMzk1MzkyNjg=/v.swf" quality="high" width="480" height="400" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"></embed><br/>Tags - <a href="http://www.54php.com/tags/%25E6%259C%2580%25E7%25BB%2588%25E5%25B9%25BB%25E6%2583%25B3/" rel="tag">最终幻想</a> , <a href="http://www.54php.com/tags/versus13/" rel="tag">versus13</a> , <a href="http://www.54php.com/tags/cloud%25E5%25AE%25A3%25E4%25BC%25A0%25E7%2589%2587/" rel="tag">cloud宣传片</a>
]]>
</description>
</item><item>
<link>http://www.54php.com/post/232/</link>
<title><![CDATA[站长你的技术能力合格吗]]></title> 
<author>特蓝克斯 &lt;asen477@163.com&gt;</author>
<category><![CDATA[新闻]]></category>
<pubDate>Sat, 23 Aug 2008 03:17:29 +0000</pubDate> 
<guid>http://www.54php.com/post/232/</guid> 
<description>
<![CDATA[ 
	&nbsp;&nbsp;&nbsp;&nbsp; 现在很多网站都打出某某最强，某某第一，某某门户的招牌来吸引访客。当然本人也不例外。因为大家都在这场吹牛不用上税的互联网混战中谋利。<br/><br/>咱们说吹牛也得有个谱吧。就拿本人来说，在大学里学的是法学专业，但计算机技术却最突出，大学两年一直在课余时间搞网站。这期间学到很多东西，尤其是在站长技术素养方面的体会尤为突出。一个网站发展的好坏和站长的能力密不可分。<br/><br/>1、网页基础<br/><br/>现在有很多站长连最基本的HTML代码都看不懂，却整天喊着要搞门户站。这肯定不切实际。你可以问问那些资深的站长，有哪个不是电脑高手，有哪个不会网页代码的?这是建站的个人基础，是一个成功的站长所起码要具备的。<br/><br/>2、网络基础<br/><br/>所谓网络基础，就是你熟悉网络的程度。也就是说遇到问题，你该知道去哪个网站。该晓得用什么方法去解决。脑子里要时刻记住10个你最能用到的网站。站长网啊，百度指数啊，落伍者论坛啊等等等等，遇到问题首先想到去这些网站寻求解决的办法，或者最简单的百度一下。别整天在QQ里求别人帮你这个帮你那个，有那点功夫多学些教程知识比什么都强。<br/>............<br/><br/>Tags - <a href="http://www.54php.com/tags/%25E4%25B8%25AA%25E4%25BA%25BA%25E7%25AB%2599%25E9%2595%25BF/" rel="tag">个人站长</a> , <a href="http://www.54php.com/tags/%25E7%25BD%2591%25E9%25A1%25B5%25E5%259F%25BA%25E7%25A1%2580/" rel="tag">网页基础</a> , <a href="http://www.54php.com/tags/%25E7%25BD%2591%25E7%25BB%259C%25E5%259F%25BA%25E7%25A1%2580/" rel="tag">网络基础</a>
]]>
</description>
</item><item>
<link>http://www.54php.com/post/231/</link>
<title><![CDATA[div+css中文字居中问题]]></title> 
<author>特蓝克斯 &lt;asen477@163.com&gt;</author>
<category><![CDATA[CSS]]></category>
<pubDate>Thu, 21 Aug 2008 08:48:24 +0000</pubDate> 
<guid>http://www.54php.com/post/231/</guid> 
<description>
<![CDATA[ 
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;今天在DIV制作页面的过程中，碰到文字无法垂直居中的问题，明明vertical-align已经设置为center但是显示的时候，文字依然顶端对齐。<br/> 　　那么如何解决呢？事实上是因为遗漏了line-height属性，没有设置行高，所以导致了文字无法垂直居中。<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 以下为具体代码 ：<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<div class="code">&lt;div style=&quot;text-align:center; vertical-align:middle; line-height:24px&quot;&gt;文字居中&lt;/div&gt;</div><br/>　　文中的text-align属性为文字水平设置，属性有center[居中]、inherit[继承父对象的属性]、justify[两端对齐]、left[左对齐]、right[右对齐]<br/>　　文中的vertical-align属性为文字垂直设置，属性有baseline[基线]、bottom[]、inherit[继承父对象的属性]、middle[中线对齐]、sub[下标]、super[上标]、text-bottom[文本地对齐]、text-top[文本顶对齐]、top[顶部]，另外还可以设置百分比，如vertical-align:10%;<br/>　　最后还要设置line-height属性，没有行高，也就没有办法判断该行的中线位置是哪，自然也就无法使文字显示为垂直居中了<br/>Tags - <a href="http://www.54php.com/tags/div%252Bcss/" rel="tag">div+css</a> , <a href="http://www.54php.com/tags/%25E4%25B8%25AD%25E6%2596%2587%25E5%25AD%2597%25E5%25B1%2585%25E4%25B8%25AD/" rel="tag">中文字居中</a>
]]>
</description>
</item><item>
<link>http://www.54php.com/post/230/</link>
<title><![CDATA[去掉PNG图片在IE里面的灰色背景]]></title> 
<author>特蓝克斯 &lt;asen477@163.com&gt;</author>
<category><![CDATA[JavaScript]]></category>
<pubDate>Thu, 21 Aug 2008 04:44:22 +0000</pubDate> 
<guid>http://www.54php.com/post/230/</guid> 
<description>
<![CDATA[ 
	png图片有很好的品质。阴影效果也不会有杂边,很流畅。如果插入网页的话可以给网站内容增色不少!更重要的是在不增加图片容量大小的情况下提高了页面的图片的质量。对于有复杂背景，如：在有颜色过度背景上插入不规则边框的图片带来极大很便利!<br/><br/>但目前IE中对于插入的透明背景的.png的图片是不能正常显示的。IE会自动给".png"格式的图片加个灰色背景。<br/><br/>解决这个的方法是增加javascript。具体方法如下：<br/><br/>把下面的代码放在head区就可以解决问题了：<br/><br/><br/><div class="code">&lt;script language=&quot;javascript&quot;&gt; <br/>function correctPNG()&nbsp;&nbsp;<br/>&#123; <br/>for(var i=0; i&lt;document.images.length; i++) <br/>&#123; <br/>&nbsp;&nbsp;var img = document.images&#91;i&#93; <br/>&nbsp;&nbsp;var imgName = img.src.toUpperCase() <br/>&nbsp;&nbsp;if (imgName.substring(imgName.length-3, imgName.length) == &quot;PNG&quot;) <br/>&nbsp;&nbsp;&#123; <br/>&nbsp;&nbsp; var imgID = (img.id) ? &quot;id=&#039;&quot; + img.id + &quot;&#039; &quot; : &quot;&quot; <br/>&nbsp;&nbsp; var imgClass = (img.className) ? &quot;class=&#039;&quot; + img.className + &quot;&#039; &quot; : &quot;&quot; <br/>&nbsp;&nbsp; var imgTitle = (img.title) ? &quot;title=&#039;&quot; + img.title + &quot;&#039; &quot; : &quot;title=&#039;&quot; + img.alt + &quot;&#039; &quot; <br/>&nbsp;&nbsp; var imgStyle = &quot;display:inline-block;&quot; + img.style.cssText&nbsp;&nbsp;<br/>&nbsp;&nbsp; if (img.align == &quot;left&quot;) imgStyle = &quot;float:left;&quot; + imgStyle <br/>&nbsp;&nbsp; if (img.align == &quot;right&quot;) imgStyle = &quot;float:right;&quot; + imgStyle <br/>&nbsp;&nbsp; if (img.parentElement.href) imgStyle = &quot;cursor:hand;&quot; + imgStyle&nbsp;&nbsp; <br/>&nbsp;&nbsp; var strNewHTML = &quot;&lt;span &quot; + imgID + imgClass + imgTitle <br/>&nbsp;&nbsp; + &quot; style=&#92;&quot;&quot; + &quot;width:&quot; + img.width + &quot;px; height:&quot; + img.height + &quot;px;&quot; + imgStyle + &quot;;&quot; <br/>&nbsp;&nbsp;+ &quot;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader&quot; <br/>&nbsp;&nbsp; + &quot;(src=&#92;&#039;&quot; + img.src + &quot;&#92;&#039;, sizingMethod=&#039;scale&#039;);&#92;&quot;&gt;&lt;/span&gt;&quot;&nbsp;&nbsp;<br/>&nbsp;&nbsp; img.outerHTML = strNewHTML <br/>&nbsp;&nbsp; i = i-1 <br/>&nbsp;&nbsp;&#125; <br/>&#125; <br/>&#125; <br/>window.attachEvent(&quot;onload&quot;, correctPNG); <br/>&lt;/script&gt;</div>&nbsp;&nbsp;<br/><br/>也可以把这段代码单独加在一张图片上：<br/><br/><div class="code">&lt;span style=&quot;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=&#039;male.png&#039;,sizingMethod=&#039;scale&#039;);&quot;&gt;&lt;/span&gt; </div><br/>Tags - <a href="http://www.54php.com/tags/png%25E5%259B%25BE%25E7%2589%2587/" rel="tag">png图片</a> , <a href="http://www.54php.com/tags/%25E7%2581%25B0%25E8%2589%25B2%25E8%2583%258C%25E6%2599%25AF/" rel="tag">灰色背景</a>
]]>
</description>
</item><item>
<link>http://www.54php.com/post/229/</link>
<title><![CDATA[冬天论是个有目的的炒作]]></title> 
<author>特蓝克斯 &lt;asen477@163.com&gt;</author>
<category><![CDATA[新闻]]></category>
<pubDate>Tue, 19 Aug 2008 08:06:38 +0000</pubDate> 
<guid>http://www.54php.com/post/229/</guid> 
<description>
<![CDATA[ 
	<div class="quote"><div class="quote-title">引用</div><div class="quote-content">核心提示：7月24日，阿里巴巴总裁马云在给内部员工的一封信中表示，“我的看法是，整个经济形势不容乐观，接下来的冬天会比大家想象得更长!更寒冷!更复杂!我们准备过冬吧!”。</div></div><br/><br/>怪事年年有，今夏尤其多。在互联网行业，首当其冲的就是冬天论和博客过时论。关于博客过时论下篇文章再细说，这次主要说说冬天论。<br/><br/>炎炎夏日却有人会感觉到是冬天?是的，我没有出错，这样的怪事就发生在互联网行业。7月24日，阿里巴巴总裁马云在给内部员工的一封信中表示，“我的看法是，整个经济形势不容乐观，接下来的冬天会比大家想象得更长!更寒冷!更复杂!我们准备过冬吧!”。<br/>............<br/><br/>Tags - <a href="http://www.54php.com/tags/%25E4%25BA%2592%25E8%2581%2594%25E7%25BD%2591/" rel="tag">互联网</a> , <a href="http://www.54php.com/tags/%25E5%2586%25AC%25E5%25A4%25A9%25E8%25AE%25BA/" rel="tag">冬天论</a> , <a href="http://www.54php.com/tags/%25E7%2582%2592%25E4%25BD%259C/" rel="tag">炒作</a>
]]>
</description>
</item><item>
<link>http://www.54php.com/post/228/</link>
<title><![CDATA[沈阳地图公交查询]]></title> 
<author>特蓝克斯 &lt;asen477@163.com&gt;</author>
<category><![CDATA[生活]]></category>
<pubDate>Tue, 19 Aug 2008 07:42:12 +0000</pubDate> 
<guid>http://www.54php.com/post/228/</guid> 
<description>
<![CDATA[ 
	<div id='lightbox'><a href="http://www.54php.com/attachment.php?fid=15" target="_blank"><img src="http://www.54php.com/attachment.php?fid=15" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a></div><br/><a href='http://map.54php.com/'>连接入口</a><br/><br/><br/>Tags - <a href="http://www.54php.com/tags/%25E6%25B2%2588%25E9%2598%25B3%25E5%259C%25B0%25E5%259B%25BE/" rel="tag">沈阳地图</a> , <a href="http://www.54php.com/tags/%25E5%2585%25AC%25E4%25BA%25A4%25E6%259F%25A5%25E8%25AF%25A2/" rel="tag">公交查询</a> , <a href="http://www.54php.com/tags/%25E8%25A1%258C%25E8%25BD%25A6%25E9%25A9%25BE%25E9%25A9%25B6/" rel="tag">行车驾驶</a>
]]>
</description>
</item><item>
<link>http://www.54php.com/post/227/</link>
<title><![CDATA[SNS带给顾客的特殊价值描绘]]></title> 
<author>特蓝克斯 &lt;asen477@163.com&gt;</author>
<category><![CDATA[新闻]]></category>
<pubDate>Tue, 19 Aug 2008 07:29:13 +0000</pubDate> 
<guid>http://www.54php.com/post/227/</guid> 
<description>
<![CDATA[ 
	<strong>第二章 SNS带给顾客的特殊价值描绘</strong><br/><br/>　　假设:我拥有一台没有预装SNS的电脑，我现在只能用它来从事以下活动:<br/><br/>　　浏览网页、搜索、聊天、电子邮件、社区BBS、网络游戏、购物、盗版共享、特殊的企业应用。<br/><br/>　　我在使用SNS之后，我用它来从事下列活动:<br/><br/>　　1. 创建我的网站，而不需要懂得HTML或其它任何需要专业人员的技术。所有来访问我的SNS个人网站的人，都可以排队和我即时交流，包括使用文字，网络电话，或者面对面的视频。<br/>............<br/><br/>Tags - <a href="http://www.54php.com/tags/sns/" rel="tag">sns</a> , <a href="http://www.54php.com/tags/%25E9%25A1%25BE%25E5%25AE%25A2%25E7%259A%2584%25E7%2589%25B9%25E6%25AE%258A/" rel="tag">顾客的特殊</a> , <a href="http://www.54php.com/tags/%25E4%25BB%25B7%25E5%2580%25BC%25E6%258F%258F%25E7%25BB%2598/" rel="tag">价值描绘</a>
]]>
</description>
</item>
</channel>
</rss>