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);
}
效果如下:

p20090819112931

p20090819112921


CSS3讲解: