替網站加入RSS Autodiscovery和Favicon
七月 31, 2011, 8:20 p.m.
Favicon(XHTML 1.0 version):
代換href里的圖片地址
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html
xmlns="http://www.w3.org/1999/xhtml"
xml:lang="en-US"
lang="en-US">
<head profile="http://www.w3.org/2005/10/profile">
<link rel="icon"
type="image/png"
href="http://example.com/myicon.png">
[…]
</head>
[…]
</html>
RSS Autodiscovery:
在Head加入以下代碼,并代換title和hred
<link rel="alternate" type="application/rss+xml" title="RSS Feed for petefreitag.com" href="/rss/" />
Refenrences:
