下载托管在我的网站以外的域的文件统计信息



我在我的Dropbox(免费托管)中公开共享一个.ics文件,并希望跟踪我的社区使用它的情况。

Dropbox 无法做到这一点,所以我在 NearlyFreeSpeech.net 的静态页面上设置 AWStats,目的是隐形地从 http://www.mydomain.com/files/calendar.ics 重定向到 https://dl.dropboxusercontent.com/u/XXXXXXX/calendar.ics。

(a) 我的 .htaccess 重定向不起作用:

RewriteRule /files/calendar.ics https://dl.dropboxusercontent.com/u/XXXXXXX/calendar.ics [PT]

(b) 我可以在我的 nfsn-awstats.conf(类似于 awstats.config)中添加哪个部分来跟踪我的重定向(#downloads_from_unique_IP_addresses 和 #downloads)的使用。

谢谢!

尝试不带前导斜杠:

RewriteRule ^files/calendar.ics$ https://dl.dropboxusercontent.com/u/XXXXXXX/calendar.ics [L,NC,R]

相关内容

  • 没有找到相关文章

最新更新