如何使用mod_rewrite将特定文件类型的请求发送到另一个域名(服务器)?
示例:
如果您请求http://example.com/potato.png
,则会重定向到http://anotherdomain.com/potato.png
。
答案 0 :(得分:15)
以下是将jpg,gif或png扩展名重定向到anotherdomain.com的快速解决方案
RewriteEngine on
RewriteRule \.(gif|jpg|png)$ http://anotherdomain.com/%{REQUEST_URI} [NC,R=301,L]