当前位置:  开发笔记 > 编程语言 > 正文

.htaccess将所有页面重定向到新域

如何解决《.htaccess将所有页面重定向到新域》经验,为你挑选了9个好方法。

我将使用哪个重定向规则将所有页面olddomain.example重定向到重定向到newdomain.example

该网站具有完全不同的结构,因此我希望将旧域下的每个页面重定向到新的域索引页面.

我认为这样做(在olddomain.example基目录下):

RewriteEngine On
RewriteRule ^(.*)$ http://newdomain.example/ [R=301]

但如果我导航到olddomain.example/somepage我被重定向到newdomain.example/somepage.我期待重定向只能newdomain.example没有页面后缀.

如何保留最后一部分?



1> 小智..:

以下答案可能会导致无限重定向循环......

在这里,这个将网址上的域名重定向到新域名网址上的完全相同的副本:

RewriteEngine on 
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L]

www.example.net/somepage.html?var=foo 重定向到 www.newdomain.com/somepage.html?var=foo


问题是将所有内容重定向到主页
虽然这不是问题的答案,但是我从SE中找到了这个问题来寻求这个答案.谢谢 !!!
这不会重定向每个请求,即使是newdomain.com的那些?并且在这些情况下基本上导致两个重复请求?
有人可以回答比尔的问题.这不应该使用RewriteCond来防止重复请求和/或不必要的重写吗?我想,即使没有必要,每次重写也不会有任何明显的影响.但为什么这样做呢.

2> YOU..:

可能是这样的:

Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^OLDDOMAIN\.com$ [NC]
RewriteRule ^(.*)$ http://NEWDOMAIN.com [R=301,L]


难道不是`RewriteCond%{HTTP_HOST}!^ NEWDOMAIN\.com $ [NC]`?
@JimGeurts仅当您要重定向不是newdomain的一切时.但是,在这种情况下,我们只想重定向olddomain.

3> Yuval Adam..:

只是为了澄清一下,在删除了阻塞的主机重定向后,我原来的解决方案也有效:

RewriteEngine On
RewriteRule ^(.*)$ http://newdomain.com/ [R=301]



4> Daantje..:

我用我的Wordpress博客作为.htaccess.它把HTTP://www.blah.example/asad,HTTP://blah.example/asad,HTTP://www.blah.example2/asad等,对HTTP://blah.example/asad 感谢所有其他答案我想出来了.


RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_HOST} !.*YOURDOMAIN\.example$ [NC]
RewriteRule ^(.*)$ http://YOURDOMAIN.example/$1 [R=301,L]

RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]



5> Iana Sergiei..:

  RewriteEngine On
  RewriteCond %{HTTP_HOST} ^olddomain.com$ [OR]
  RewriteCond %{HTTP_HOST} ^www.olddomain.com$
  RewriteRule (.*)$ http://www.newdomain.com/$1 [R=301,L]

这对我有用



6> RustyIngles..:

有各种方法可以做到这一点和各种重定向,我在下面列出了它们:

301(永久)重定向:永久性地将整个站点指向不同的URL.这是最常见的重定向类型,在大多数情况下都很有用.在此示例中,我们将重定向到"example.com"域:

# This allows you to redirect your entire website to any other domain
Redirect 301 / http://example.com/

302(临时)重定向:将整个站点指向其他临时URL.当您拥有临时目标网页并计划在以后切换回主着陆页时,这对于SEO目的非常有用:

# This allows you to redirect your entire website to any other domain
Redirect 302 / http://example.com/

将index.html重定向到特定的子文件夹:

# This allows you to redirect index.html to a specific subfolder
Redirect /index.html http://example.com/newdirectory/

将旧文件重定向到新文件路径:

# Redirect old file path to new file path
Redirect /olddirectory/oldfile.html http://example.com/newdirectory/newfile.html

重定向到特定索引页面:

# Provide Specific Index Page (Set the default handler)
DirectoryIndex index.html



7> 小智..:

如果要从某个位置重定向到子域,可以使用:

Redirect 301 /Old-Location/ http://subdomain.yourdomain.com



8> starkeen..:

如果您要将旧网站重定向到的新域位于不同的主机上,则只需使用 Redirect

Redirect 301 / http://newdomain.com

这会将所有请求重定向olddomainnewdomain.

RedirectRedirect loop如果你的newdomain和olddomain都在同一个主机上,那么指令将不起作用或者可能导致你需要mod-rewrite根据请求的主机头重定向.

RewriteEngine on


RewriteCond %{HTTP_HOST} ^(www\.)?olddomain\.com$
RewriteRule ^ http://newdomain.com%{REQUEST_URI} [NE,L,R] 



9> 小智..:

我的声誉不允许我对答案发表评论,但我只是想指出这里评分最高的答案有错误:

RewriteEngine on 
RewriteRule ^(.*)$ http://www.newdomain.com$1 [R=301,L]

应该在1美元之前有一个斜线,所以

RewriteEngine on 
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L]

推荐阅读
手机用户2502852037
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有