Apache Rewrite Rule支持,不带斜杠和index.htm

时间:2017-04-28 10:36:46

标签: apache .htaccess mod-rewrite

我想301将用户从旧网站重定向到新网站。我正在研究apache规则将所有这3种格式重定向到新网站:

http://mypreviousdomain.com/news/RSS

http://mypreviousdomain.com/news/RSS/

http://mypreviousdomain.com/news/RSS/index.htm

http://newdomain.com/news/feed.html

RewriteRule ^/news/([a-zA-Z0-9]*)/?$ http://newdomain.com/news/feed.html [L,R=301]

请建议处理这种情况的适当规则应该是什么。

此致 的Vivek

1 个答案:

答案 0 :(得分:1)

尝试以下方法,

RewriteRule ^/?news/([\w]+)?/?(index.htm)?/?$ http://newdomain.com/news/feed.html [L,R=301]