两个域名同时指向ECSHOP问题

2016-07-07 15:21 来源:www.chinab4c.com 作者:ecshop专家



两个域名同时指向ECSHOP,www.nongsell.comnongsell.com 还有一个是空间的3J域名,这个三域名都能打开网站,但我想这三个域名打开时IE都显示www.nongsell.com,就像DZ论坛一样,请问这个怎么实现?DZ论坛的只是在后台设置域名就实现了,但ECSHOP后台没有这样的设置

回答:
你把后两个域名单独绑定到别的文件夹上然后在里面随便写一个跳转代码跳转到www.nongsell.com里不就行了。。

设置.htaccess文件(只适用于linux系统,并需要虚拟主机支持。)
使访问example.com的时候就会自动转到www.example.com
在.htaccess文件里写上以下代码即可。
代码如下(下面是我的网站的设置,你把域名改下就
  1. # url canonicalization
  2. RewriteEngine on
  3. RewriteCond %{http_host} ^yindown.com [NC]
  4. RewriteRule ^(.*)$ http://www.yindown.com/$1 [L,R=301]
复制代码
K)
  1. # url canonicalization
  2. RewriteEngine on
  3. RewriteCond %{http_host} ^yindown.com [NC]
  4. RewriteRule ^(.*)$ http://www.yindown.com/$1 [L,R=301]
复制代码



通过rewrite重定向可以实现

设置.htaccess文件(只适用于linux系统,并需要虚拟主机支持。)
使访问example.com的时候就会自动转到
在 ...
zero22222 发表于 2010-12-15 08:56


我的不是linux系统

通过rewrite重定向可以实现
ecshopkaifa 发表于 2010-12-15 09:24



具体怎么设置啊?

只绑定www的
其他做301跳转。
或者直接干脆就在域名里设置转发。

301重点定我也用了,但是成效不知道要多久才能出来

只绑定www的
其他做301跳转。
或者直接干脆就在域名里设置转发。
sharpboy 发表于 2010-12-15 17:50



怎么做301重定向呢




1、IIS下301设置
Internet信息服务管理器 -> 虚拟目录 -> 重定向到URL,输入需要转向的目标URL,并选择“资源的永久重定向”。
2、ASP下的301转向代码
<%@ Language=VBScript %>
<%
Resp**e.Status=”301 Moved Permanently”
Resp**e.AddHeader “Location”, “http://www.lesishu.cn/articles/301/”
%>
3、ASP.Net下的301转向代码
<script runat=”server”>
private void Page_Load(object sender, System.EventArgs e)
{
Resp**e.Status = “301 Moved Permanently”;
Resp**e.AddHeader(”Location”,”http://www.lesishu.cn/articles/301/“);
}
</script>
4、PHP下的301转向代码
header(”HTTP/1.1 301 Moved Permanently”);
header(”Location: http://www.lesishu.cn/articles/301/”);
exit();
5、CGI Perl下的301转向代码
$q = new CGI;
print $q->redirect(”http://www.new-url.com/”);
6、JSP下的301转向代码
<%
resp**e.setStatus(301);
resp**e.setHeader( “Location”, “http://www.lesishu.cn/” );
resp**e.setHeader( “Connection”, “close” );
%>
7、Apache下301转向代码
新建.htaccess文件,输入下列内容(需要开启mod_rewrite):
1)将不带WWW的域名转向到带WWW的域名下
Opti** +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^lesishu.cn [NC]
RewriteRule ^(.*)$ http://www.lesishu.cn/$1 [L,R=301]
2)重定向到新域名
Opti** +FollowSymLinks
RewriteEngine on
RewriteRule ^(.*)$ http://www.lesishu.cn/$1 [L,R=301]
3)使用正则进行301转向,实现伪静态
Opti** +FollowSymLinks
RewriteEngine on
RewriteRule ^news-(.+)\.html$ news.php?id=$1
将news.php?id=123这样的地址转向到news-123.html
8、Apache下vhosts.conf中配置301转向
为实现URL规范化,SEO通常将不带WWW的域名转向到带WWW域名,vhosts.conf中配置为:
<VirtualHost *:80>
ServerName www.lesishu.cn
DocumentRoot /home/lesishu
</VirtualHost>
<VirtualHost *:80>
ServerName lesishu.cn
RedirectMatch permanent ^/(.*) http://www.lesishu.cn/$1
</VirtualHost>
Apache下除了以上2种方法,还有其他配置方法和可选参数,建议阅读Apache文档。
301转向情况检测
http://www.seoc**ultants.com/tools/headers.asp
http://www.internetofficer.com/seo-tool/redirect-check/
作者: 樂思蜀 www.lesishu.cn

4、PHP下的301转向代码
header(”HTTP/1.1 301 Moved Permanently”);
header(”Location: http://www.lesishu.cn/articles/301/”);
exit();

新手,看不明白。是重新建个PHP把这代码放入去然后放在根目录吗?那这个域名http://www.lesishu.cn/articles/301/应该改成那个呢?

不是放在根目录一般是index.php文件,你试试

那放置在index.php哪个地方?

<?php
  header("HTTP/1.1 301 Moved Permanently");
  header ("Location:http://www.nongsell.com/");
exit();
?>

把它加在顶部,结果网站打不开了