首页 > 技术文章 > apache,请求来源特定域名,重定向到图片域名。

coffee_cn 2019-12-31 16:25 原文

.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]

 

推荐阅读