打开文件 WEB-INF/urlrewrite.xml
添加一条301的规则就可以啦。下面的例子是把非www开头的域名301到www开头的域名上
<rule>
<name>Domain Name Check</name>
<condition name="host" operator="notequal">www.xxxxxx.com</condition>
<from>^/(.*)</from>
<to type="permanent-redirect" >
http://www.xxxxxx.com/$1</to> </rule>