大家的域名是怎么处理 www 与不带 3W 的?

2014-08-23 14:32:18 +08:00
 raycloud
前面我都是将两个通过A记录解析到IP,但是怕分散权重,现改成裸域301到WWW
比如,我将domain.com通过301转发到www.domain.com, 那么访问domain.com会跳转到www.domain.com,但是domain.com/about 不能跳转到 www.domain.com/about, 请问该怎么处理啊?
4916 次点击
所在节点    问与答
21 条回复
pimin
2014-08-23 14:52:27 +08:00
roychan
2014-08-23 15:07:58 +08:00
不会吧……我都是 rewrite 301 permanent
Tink
2014-08-23 15:33:14 +08:00
怎么可能,应该是会跳转的啊
raycloud
2014-08-23 15:41:16 +08:00
@Tink 会吗?我的现在不可以,是在dns.la做解析的
Automan
2014-08-23 15:42:17 +08:00
@raycloud 自己写个程序跳转把。。
Lucius
2014-08-23 15:43:23 +08:00
rewrite 301
raycloud
2014-08-23 15:45:18 +08:00
@Lucius 啥意思?目前是301啊
Lucius
2014-08-23 15:50:23 +08:00
@raycloud

RewriteEngine On
RewriteCond %{HTTP_HOST} ^v2ex.com [NC]
RewriteRule ^(.*)$ http://tanronggui.xyz/$1 [L,R=301]
maikcn
2014-08-23 15:52:04 +08:00
nginx

```
server {
listen 80;
server_name example.com;
return 301 http://www.example.com$request_uri;
}
```
hzqim
2014-08-23 15:58:29 +08:00
example.com用来短地址服务,访问example.com直接跳转到www.example.com,访问example/xxx就跳转到缩短的地址。

server{
listen 80;
server_name example.com
rewrite ^()$ http:www.example.com permanent;
}

server{
listen 80;
server_name www.example.com;
...
}
raycloud
2014-08-23 15:59:11 +08:00
@maikcn 谢谢,知道tomcat怎么配不?
raycloud
2014-08-23 16:02:03 +08:00
@hzqim dns.la官网好像就是这么做的
lenye
2014-08-23 16:03:21 +08:00
nginx

server {
listen 80;
server_name domain.com;
return 301 $scheme://www.$host$request_uri;
}
yjsslab
2014-08-23 17:30:28 +08:00
为什么还用 www 呢?不时髦了。
raycloud
2014-08-23 17:37:30 +08:00
@yjsslab 呵呵,大众化,总有些人爱这个,我看好多网站都用WWW
maikcn
2014-08-23 18:02:50 +08:00
@raycloud 一般都让 nginx 反向代理内部的 tomcat
一定要让 tomcat 识别的话,一般在Java程序中用 urlrewrite 的工具来做跳转,大概这样
http://nematodes.org/martin/2010/02/04/301-permanent-redirect-with-tomcat-howto/
raycloud
2014-08-23 18:46:46 +08:00
@maikcn 知道了,非常感谢
14
2014-08-23 18:51:31 +08:00
CNAME到裸域名
Exin
2014-08-23 19:50:21 +08:00
好久不用www了……
Laobai
2014-08-23 20:10:16 +08:00
重定向

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://tanronggui.xyz/t/129454

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX