如何从www.domain.com/folder1/postname.html重定向到www.domain.com/folder2/postname.html?

时间:2018-07-11 22:09:31

标签: .htaccess redirect

我无法在线找到解决方案。

一个网站当前在两个文件夹中包含重复的内容-domain.com/news/postname.html和domain.com/news-details/postname.html。

我想将流量从/ news /重定向到/ news-details /,两个文件夹中的帖子标题链接/ URL都是相同的(例如postname.html)

如何使用.htaccess做到这一点?

1 个答案:

答案 0 :(得分:0)

尝试以下规则,

RewriteEngine On
RewriteCond %{REQUEST_URI} ^news/(.*)
RewriteRule ^ http://%{HTTP_HOST}/news-details/%1 [R=301]