Reference
Webmaster Tools and SEO Software Resources :: Webmaster Toolkithttp://www.webmaster-toolkit.com/
via
SEO 用 mod_rewrite ルールを生成する Webmaster Toolkit : NDO::Webloghttp://naoya.dyndns.org/~naoya/mt/archives/001130.html
# For sites running on a port other than 80
RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{SERVER_PORT} !^80$
RewriteRule ^/(.*) http://www.example.com:%{SERVER_PORT}/$1 [L,R]
# And for a site running on port 80
RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^/(.*) http://www.example.com/$1 [L,R]
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(example\.lolipop\.jp|www\.example\.com)(:80)?
RewriteRule ^(.*) http://example.com/$1 [R,L]"
NameVirtualHost *
<VirtualHost *>
ServerName www.example.net
ServerAlias example.com
Redirect permanent / http://www.example.com/
</VirtualHost>
<VirtualHost *>
ServerName www.example.com
DocumentRoot /usr/local/apache/htdocs
</VirtualHost>
<a href="example.pdf#page=3">3ページ目を表示</a>
<embed
src="test.pdf"
width="60%"
height="80%"
/>
<object
classid="clsid:CA8A9780-280D-11CF-A24D-444553540000"
width="60%"
height="80%"
id="Pdf1"
>
<param name="SRC" value="test.pdf" />
</object>
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
IE6はページの先頭行がDOCTYPEでないと、IE5互換モードでレンダリングしてしまうためです。
IE6の場合、XML宣言が先頭行にあると、W3C準拠モードでレンダリングされません。
IE6の有名なバグです。
DOCTYPEをドキュメントの先頭に置かないとW3C準拠モード(strict standards-compliant mode)にならない。
上記のXML宣言もドキュメントの先頭に置かなければならない。
結果、XHTMLの場合、XML宣言をすると、W3C準拠モードにならない。
- Reference
SourceForge - Pukiwiki Official - 続・質問箱/116
http://pukiwiki.sourceforge.jp/?%E7%B6%9A%E3%83%BB%E8%B3%AA%E5%95%8F%E7%AE%B1%2F116
Web Workshop - XML に関するよく寄せられる質問 - XML 宣言は何を実行するのですか?
http://msdn.microsoft.com/library/ja/jpwebwk/xml/general/xmlfaq.asp?frame=true#issues-declaration
MSDN Home > MSDN Library > Web Development > HTML and CSS > HTML and DHTML
Reference > Objects > !DOCTYPE (Internet Explorer - DHTML)
http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/doctype.asp
RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^/(.*) http://www.example.com/$1 [L,R=301]
RewriteCond %{HTTP_HOST} !^example\.com [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^/(.*) http://example.com/$1 [L,R=301]