我需要将http://www.example.com/2-for-1重定向到http://www.example/article/1。到目前为止我尝试过的一切都不正确,或者服务器搞砸了。
有知识的人可以告诉我正确的语法,以便我可以验证服务器设置是否不正确?
这些是我最近的一些尝试:
RewriteRule ^(.*)2(\-)for(\-)1$ http://www.example.com/article/1 [NC,R=301,L]
RewriteRule ^(.*)/2\-for\-1$ /article/1 [NC,R=301,L]
RewriteRule ^2-for-1/?$ article/1 [NC,L]