我目前在我的服务器http://www.example.com上有一个/img/
文件夹。我想将这些文件移到https://secure.example.com,但只需移动文件夹,我的代码中的很多链接就会中断并链接到死图像位置。
是否可以使用.htaccess
或其他方法强制服务器在找到原始/img/
文件夹链接的其他位置查找图像?
即。当页面查找http://www.example.com/img/test.jpg时,它实际上会查看https://secure.example.com/img/test.jpg。
这是我尝试过的,但它不起作用:
RewriteEngine on
RewriteRule ^img/(.*)$ https://secure.example.com/img/$1 [NC,P]