您好我有一个可下载产品的Magento网站。
我正在使用jPlayer脚本来允许用户播放mp3音频,但我希望通过htaccess保护它们。
这是我的jPlayer代码
$("#jquery_jplayer_1").jPlayer({
ready: function (event) {
$(this).jPlayer("setMedia", {
//title: "Bubble",
mp3: "<?php echo $link_audio; ?>",
//m4a: "http://jplayer.org/audio/m4a/Miaow-07-Bubble.m4a",
});
},
//swfPath: "../../dist/jplayer",
supplied: "mp3",
wmode: "window",
useStateClassSkin: true,
autoBlur: false,
smoothPlayBar: true,
keyEnabled: true,
remainingDuration: true,
toggleDuration: true
});
其中link_audio是我的magento / media / downloadable
所以我想允许脚本执行但不允许通过网络浏览(例如插入网址)。
我创建了这个.htacces但不起作用
Order allow, deny
Deny from all