您需要编辑。htaccess文件,并在当前行之后添加以下行。您可以从cpanel或FTP编辑文件。还有一个WordPress Plugin 允许编辑。htaccess文件。
Remember it\'s a very advanced thing to do. So make sure to backup current file before editing. Any error will cause site not loading.
/* Prevent image hotlinking in WordPress */
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\\.)?yourwebsite.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\\.)?google.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\\.)?facebook.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\\.)?twitter.com [NC]
RewriteRule \\.(jpg|jpeg|png|gif)$ - [F]
这将只允许youtube、google、facebook和twitter直接链接您的图像。所有其他网站都将被阻止。