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

时间:2013-12-22 20:15:08

标签: apache .htaccess mod-rewrite awstats nearlyfreespeech

我在我的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)的使用。

谢谢!

1 个答案:

答案 0 :(得分:0)

尝试不带前导斜杠:

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