将文件夹重定向到包含文件夹的子域

时间:2015-03-24 11:35:38

标签: apache .htaccess redirect

文件夹中的每个图片

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

谢谢

1 个答案:

答案 0 :(得分:0)

您需要捕获完整的请求网址:

RewriteCond %{HTTP_HOST} ^(?:www\.)?example\.com$ [NC]
RewriteRule ^(files/thumbs/.*)$ http://images.example.com/$1 [L,R=301,NC]