我目前正在从 Linux (Apache) 服务器迁移到 Windows (IIS)。在 Linux 上,我使用 .htaccess 文件来检查 HTTP_REFERER 值,以确保我们的文件仅从我们的站点加载,而不是从其他站点链接到:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?foo.com [NC]
RewriteRule \.(dcr)$ - [NC,F,L]
如何在 Windows 机器上完成此操作?(Windows Server 2008 R2、IIS 7)