我正在尝试重定向
.\testvid
至.\videos\testvid
使用 htaccess
但我也在为 100 个文件夹做这件事,例如:
.\testvid2
至.\videos\testvid2
.\testvid3
至.\videos\testvid3
.\testvid4
至.\videos\testvid4
我可不可以做:
.\{SET_VARIABLE}
至.\videos\{VARIABLE HERE}
我目前可以使用静态条目来完成
RedirectMatch 301 ^/testvid http://domain_here.com/New_fodler/testvid
但我想用一个变量来设置它
谢谢!