htaccess重写jpg文件目录

时间:2014-06-30 22:53:28

标签: .htaccess mod-rewrite url-rewriting

我的视频大拇指位于/ thumb文件夹中。但我想像这样服务大拇指: http://example.com/f1b294327-1.jpg

但目前服务此类型:

http://example.com/thumbs/f1b294327-1.jpg

我试过这段代码:

RewriteRule ^(.*)-(.*).jpg$ thumbs/$1-$2.jpg [QSA,L]

1 个答案:

答案 0 :(得分:0)

尝试将分组更改为:

RewriteRule ^([^/]+)-([^/]+).jpg$ thumbs/$1-$2.jpg [QSA,L]