我的视频大拇指位于/ thumb文件夹中。但我想像这样服务大拇指:
http://example.com/f1b294327-1.jpg
但目前服务此类型:
http://example.com/thumbs/f1b294327-1.jpg
我试过这段代码:
RewriteRule ^(.*)-(.*).jpg$ thumbs/$1-$2.jpg [QSA,L]
答案 0 :(得分:0)
尝试将分组更改为:
RewriteRule ^([^/]+)-([^/]+).jpg$ thumbs/$1-$2.jpg [QSA,L]