我试图阻止图片直接显示在网址栏中。因为我有我的htaccess文件与下面的代码:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://manga.animworld.net [NC]
RewriteRule \.(gif|jpg)$ - [F]
这在localhost中工作正常,但是当我将它上传到我的服务器时,它就无法正常工作。
我确实在htaccess文件中放了一些垃圾来查看它是否正常工作,它确实有效,我在主域上遇到服务器错误,但我没有在直接图像网址上得到任何内容。
我的httpd.conf文件也有以下代码:
<Directory "/">
Options ExecCGI FollowSymLinks IncludesNOEXEC Indexes SymLinksIfOwnerMatch
AllowOverride All
</Directory>