htaccessを使用する際にファイルのホットリンクを制限しました。ただし、これらのファイルをGoogleDocViewerに表示する必要があります。htaccessで、Googleドキュメントにファイルのホットリンクを許可しましたが、機能していません。これで私を助けてください以下は私の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]