我们有一个大型wordpress网站,有数千条评论和图片。
出于安全和版权原因,我们希望隐藏或屏蔽指向所用图像的直接链接,以便爬虫程序/机器人程序无法看到源代码中的直接链接。
我已经尝试了wp hide and security enhancer,它只会更改文件的位置(使用重写),当跟踪链接时,它只会在所述更改的位置找到图像。我们希望得到的是,查看源代码时指向实际链接的文本已经消失。
因此:
<img class="entry-thumb" src="https://staging.site.be/wp-content/uploads/2021/04/3d16670b-cae5-4baa-89e6-de6dafdd76de-150x150.jpg" alt="" title="Tourist LeMC :: Niemandsland" width="150" height="150">
变成这样
<img class="entry-thumb" src ="/other/imgpath/img.php?.....> alt="" title="Tourist LeMC :: Niemandsland" width="150" height="150">
这在wordpress中是否有可能,如果有,我将如何继续?