htaccess hotlinking问题

时间:2010-08-14 05:23:15

标签: .htaccess

我的htaccess有这段代码

#
# Apache/PHP settings:
#

Options -Indexes
Options +FollowSymLinks

**# NOT WORKING #
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www.)?yourwebdomain.com(/)?.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www.)?friend1domain.com(/)?.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www.)?friend2domain.com(/)?.*$ [NC]
# NOT WORKING #**

# Set the default handler.
DirectoryIndex index.php

# PHP5, Apache 1 and 2
<IfModule mod_php5.c>
    php_value magic_quotes_gpc          0
    php_value register_globals          0
   php_value session.auto_start     0
   php_value memory_limit               128M
   php_value output_buffering           4096
</IfModule>

<IfModule mod_rewrite.c>
  RewriteEngine on
  # Modify the RewriteBase if you are using zina in a subdirectory and
  # the rewrite rules are not working properly.
  #RewriteBase /zina

  # Rewrite current-style URLs of the form 'index.php?p=x'.
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  #RewriteCond %{REQUEST_URI} !=/favicon.ico
  RewriteRule ^(.*)$ index.php?p=$1 [L,QSA]
</IfModule>

如何阻止我的mp3和jpg文件与其他网站的热链接?

我的下载mp3的网址以http://www.domain.com/music/cat_one/band_name/file_mp3_name.mp3?l=12

结尾

1 个答案:

答案 0 :(得分:0)

您可以将链接封装到javscript函数中的mp3和jpg文件中。这样,你在html中没有链接,但用户动作(喜欢点击某个元素)会触发一个javascript,然后通过ie ajax加载mp3或jpg。

这将阻止大多数热链接,因为其他网站必须模仿用户(这不是不可能的,但通常可能不值得付出努力)。