tomcat301與java301解析。本站提示廣大學習愛好者:(tomcat301與java301解析)文章只能為提供參考,不一定能成為您想要的結果。以下是tomcat301與java301解析正文
tomcat 301很顯著不供給此功效應當更准確的叫做JAVA301,合適要做友愛SEO的同伙
不多做說明,做SEO的話JAVA根本選urlrewrite,所以上面講的是若何聯合urlrewrite做域名跳轉。關於301此文章根本是精髓貼了。上面直接貼代碼。
留意上面的condition不是指你要攔阻甚麼域名而是與你要跳轉的域名絕對應,好比jb51.net跳www.jb51.net 那就在condition填www.jb51.net
第一種urlrewrite設置裝備擺設:
<urlrewrite>
<rule>
<name>搜索引擎優化 redirect</name>
<condition name="host" operator="notequal">^www.jb51.net</condition>
<from>^/(.*)</from>
<to type="permanent-redirect" last="true">http://www.jb51.net/$1</to>
</rule>
</urlrewrite>
第二種urlrewrite設置裝備擺設:
<urlrewrite>
<rule>
<name>搜索引擎優化 redirect</name>
<condition name="host" operator="notequal">^www.jb51.net</condition>
<condition name="host" operator="notequal">^localhost</condition>
<from>^/(.*)</from>
<to type="permanent-redirect" last="true">http://www.jb51.net/$1</to>
</rule>
</urlrewrite>