301是重定向,会返回给浏览器一个内容,类似:
HTTP/1.1 301 Moved Permanently
Server: nginx/1.4.4
Date: Wed, 17 Sep 2014 00:51:14 GMT
Content-Type: text/html
Content-Length: 184
Connection: keep-alive
Location:
http://www.name.com/<html>
<head><title>301 Moved Permanently</title></head>
<body bgcolor="white">
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx/1.4.4</center>
</body>
</html>
浏览器看到是返回的301,一般就自动跳到Location的网址那了。
把裸域301到www站点一般是为了统一入口,搜索引擎也会将它们视为同一个站点。
如果不是301,而是2个域名都提供一样的功能,那其实是2个网站。
另外,你应该是把反向代理的意思理解错了...