我正在尝试重定向一系列静态网址,无论尾部斜线是否存在,我希望它能够正常工作:
原文链接:https://www.f2er.com/regex/357172.html/foo/bar ---> /tacos /foo/bar/ --> /tacos
我已经尝试了以下各种变化,但是我总是得到一个匹配,只有尾部斜杠存在:
RewriteRule ^foo/bar?/$http://url.com/tacos RewriteRule ^foo/bar(?/)$http://url.com/tacos RewriteRule ^foo/bar*/$http://url.com/tacos RewriteRule ^foo/bar(*/)$http://url.com/tacos
我觉得我缺少一些明显的东西.帮帮我?