apache,请求来源特定域名,重定向到图片域名。

.htaccess文件

RewriteEngine on

RewriteCond %{HTTP_REFERER} ^http://(www.)?coffeetest.cn/.*$ [NC]
RewriteRule ^(.*)$ http://gallery.coffeetest.com.cn/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* /index.php [L]

原文地址:https://www.cnblogs.com/coffee_cn/p/12125078.html