我正在尝试重定向这种页面结构
example.com/y/T5INF08ZEdA/Miranda-Kerr-In-Hot-Water-with-Orlando-Bloom
到
example.com/s/Miranda-Kerr-In-Hot-Water-with-Orlando-Bloom
我的 htaccess 是
RewriteRule ^s/(.*)$ index.php?videos=$1
RedirectMatch 301 ^/?y/(.*)$ http://www.example.com/s/$2 [R=301,L]
但是,它重定向到
example.com/s/T5INF08ZEdA?videos=T5INF08ZEdA/Miranda-Kerr-In-Hot-Water-with-Orlando-Bloom
执行此重定向的正确方法是什么?