我无法在线找到解决方案。
一个网站当前在两个文件夹中包含重复的内容-domain.com/news/postname.html和domain.com/news-details/postname.html。
我想将流量从/ news /重定向到/ news-details /,两个文件夹中的帖子标题链接/ URL都是相同的(例如postname.html)
如何使用.htaccess做到这一点?
答案 0 :(得分:0)
尝试以下规则,
RewriteEngine On
RewriteCond %{REQUEST_URI} ^news/(.*)
RewriteRule ^ http://%{HTTP_HOST}/news-details/%1 [R=301]