我将使用哪个重定向规则将所有页面olddomain.example
重定向到重定向到newdomain.example
?
该网站具有完全不同的结构,因此我希望将旧域下的每个页面重定向到新的域索引页面.
我认为这样做(在olddomain.example基目录下):
RewriteEngine On RewriteRule ^(.*)$ http://newdomain.example/ [R=301]
但如果我导航到olddomain.example/somepage
我被重定向到newdomain.example/somepage
.我期待重定向只能newdomain.example
没有页面后缀.
如何保留最后一部分?
以下答案可能会导致无限重定向循环......
在这里,这个将网址上的域名重定向到新域名网址上的完全相同的副本:
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
可能是这样的:
Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^OLDDOMAIN\.com$ [NC] RewriteRule ^(.*)$ http://NEWDOMAIN.com [R=301,L]
只是为了澄清一下,在删除了阻塞的主机重定向后,我原来的解决方案也有效:
RewriteEngine On RewriteRule ^(.*)$ http://newdomain.com/ [R=301]
我用我的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]
RewriteEngine On RewriteCond %{HTTP_HOST} ^olddomain.com$ [OR] RewriteCond %{HTTP_HOST} ^www.olddomain.com$ RewriteRule (.*)$ http://www.newdomain.com/$1 [R=301,L]
这对我有用
有各种方法可以做到这一点和各种重定向,我在下面列出了它们:
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
如果要从某个位置重定向到子域,可以使用:
Redirect 301 /Old-Location/ http://subdomain.yourdomain.com
如果您要将旧网站重定向到的新域位于不同的主机上,则只需使用 Redirect
Redirect 301 / http://newdomain.com
这会将所有请求重定向olddomain
到newdomain
.
Redirect
Redirect loop
如果你的newdomain和olddomain都在同一个主机上,那么指令将不起作用或者可能导致你需要mod-rewrite
根据请求的主机头重定向.
RewriteEngine on RewriteCond %{HTTP_HOST} ^(www\.)?olddomain\.com$ RewriteRule ^ http://newdomain.com%{REQUEST_URI} [NE,L,R]
我的声誉不允许我对答案发表评论,但我只是想指出这里评分最高的答案有错误:
RewriteEngine on RewriteRule ^(.*)$ http://www.newdomain.com$1 [R=301,L]
应该在1美元之前有一个斜线,所以
RewriteEngine on RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L]