文件夹中的每个图片
http://www.example.com/files/thumbs
需要重定向到
http://images.example.com/files/thumbs
我试过了:
RewriteRule ^files/thumbs(.*)$ http://images.example.com/$1 [L,R=301]
但结果是:
http://images.example.com//test.jpg
而不是
http://images.example.com/files/thumbs/test.jpg
谢谢
答案 0 :(得分:0)
您需要捕获完整的请求网址:
RewriteCond %{HTTP_HOST} ^(?:www\.)?example\.com$ [NC]
RewriteRule ^(files/thumbs/.*)$ http://images.example.com/$1 [L,R=301,NC]