Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的服务器上有一个包含大量图像的目录。我制作的插件从我们服务器上的这个基本目录中提取这些照片,并将它们显示在用户的网站上。
现在,当您查看页面的源代码时,它显然显示图像源在我们的服务器上。客户已要求将其站点显示为源。
有没有办法改变这个图像的来源以显示为images.clientsite.com/example.jpg而不是images.mysite.com/example.jpg?
images.clientsite.com/example.jpg
images.mysite.com/example.jpg
我们有权将任何记录以及他们身边的任何编程添加到域中。如果不是,您的建议是什么作为解决方法?
最简单的解决方案是将所有图像实际放置在客户的站点上。
解决方法是使用 .htaccess 重写。因此,在您客户的图像文件夹中,您可以:
RewriteEngine on RewriteRule ^(.*)$ http://images.mysite.com/$1 [L]
HTML 中的链接看起来像客户端的站点,但是如果客户端将图像链接复制并粘贴到浏览器中,它将重定向到您的站点。