使用htaccess文件

时间:2017-04-27 15:10:27

标签: wordpress .htaccess redirect

我正在尝试将我所有的旧Wordpress网站网址重定向到新的WordPress网站。我可以重定向主网址,但我无法重定向内部网页网址。你能帮忙吗?这就是我用来将旧网址重定向到新网址的原因。

Redirect 301 / https://test1.com/subfolder/

这个工作正常,但我需要将https://test.com/subfolder/page1重定向到https://test1.com/subfolder/page1。目前,此链接(https://test.com/subfolder/page1)也会重定向到https://test1.com/subfolder/

1 个答案:

答案 0 :(得分:0)

RewriteEngine On

下面插入此规则
RewriteEngine On

RewriteCond %{HTTP_HOST} ^(?:www\.)?test\.com$ [NC]
RewriteRule ^ https://test1.com%{REQUEST_URI} [L,NE,R=301]

# rest of the rules go here

在测试此更改之前,您必须清除浏览器缓存。