我已限制使用 htaccess 对我的文件进行热链接。但我需要将这些文件显示在 Google Doc Viewer 中。在 htaccess 中,我允许 Google Docs 热链接我的文件,但它不起作用。请帮助我下面是我在 htaccess 文件中使用的代码
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomainname.com/ [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?docs.google.com [NC]
RewriteCond %{REQUEST_URI} !hotlink\.(gif|png|jpg|doc|ppt|xls|pdf|html|htm|xlsx|docx|pptx|swf) [NC]
RewriteRule .*\.(gif|png|jpg|doc|ppt|xls|pdf|html|htm|xlsx|docx|pptx|swf)$ http://mydomainname.com/ [NC]