Loving Coding & Visual Design

2009-08-19存档

利用规范链接(Canonical Link)避免网站重复内容,防止被搜索引擎惩罚:Canonical Link Element (by Matt Cutts)

在< Head >中添加:
< link rel=”canonical” href=”http://example.com/page.html”/ >

更多关于规范链接(Canonical Link):Learn about the Canonical Link Element in 5 minutes

URL Rewrite: 把无www域名301导向到www前缀域名

RewriteCond %{HTTP_HOST} ^domain.com
RewriteRule ^(.*)$ http://www.domain/$1 [R=permanent,L]

匹配所有gif.jpg.png图片,名称不分大小写。
< FilesMatch ".(?i:gif|jpe?g|png)$" >
Allow from all
< / FilesMatch >

更多关于:PCRE
注意:有些版本Apache可能不支持i和?的用法,出现如下错误:
.htaccess: Regex could not be compiled
Apache version 1.3.41 (Unix)


样式表:旋转九十度
.rotate{
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

效果如下:






p20090819112931p20090819112921

CSS3讲解:

更多:CSS Current Work



下一页


最 近 文 章

  1. 升级Blender到2.49b出现的问题 - Sun, 29 Nov 2009 06:44:48 +0000
  2. 打造自己的FireFox插件(Add-ons) - Wed, 14 Oct 2009 16:07:36 +0000
  3. 初学OpenGL - Tue, 13 Oct 2009 02:36:03 +0000
  4. 游戏:Borderlands - Wed, 16 Sep 2009 04:17:18 +0000
  5. 老板与劣质虚拟主机 - Tue, 15 Sep 2009 07:47:58 +0000
  6. 用VC++测试OpenGL和DirectX9 - Thu, 10 Sep 2009 16:18:43 +0000
  7. 我被中国电信“省钱” - Thu, 10 Sep 2009 15:29:20 +0000
  8. 创新工场引导中国创新革命? - Mon, 07 Sep 2009 17:30:07 +0000
  9. GoogleAppEngine和GoogleCode继续测试 - Thu, 03 Sep 2009 05:44:26 +0000
  10. Flash导入动态三维DAE文件 - Thu, 27 Aug 2009 05:37:59 +0000