我构建了一个名为twitterjoindate.com的网络应用,允许用户输入Twitter用户名,并了解该用户何时加入Twitter。
我注意到在输入网址时,浏览器会显示此网址
而不是常规twitterjoindate.com。
我不确定为什么会这样 - 我怎么能解决这个问题?
答案 0 :(得分:2)
非www主机名重定向到www。
➜ ~ curl -i twitterjoindate.com
HTTP/1.1 302 Moved Temporarily
Server: nginx
Date: Thu, 14 Jan 2016 18:57:23 GMT
Content-Type: text/html
Connection: keep-alive
Keep-Alive: timeout=15
Content-Length: 154
Location: http://www.twitterjoindate.com/?from=@
<html>
<head><title>302 Found</title></head>
<body bgcolor="white">
<center><h1>302 Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
检查您的服务器配置并禁用任何功能以强制使用www。