web.config用于阻止url中的pdf文件

时间:2018-07-29 07:03:34

标签: web-config

我一直试图在输入url时阻止pdf扩展名文件,但仅在单击链接时才允许访问。 我的.httacess方法有效,但是我的服务器仅允许web.config。 有什么方法可以在web.config文件中实现此目标吗? 这是我的.htaccess代码

RewriteEngine on 
RewriteCond %{HTTP_REFERER} !^http://(www\.)?localhost [NC] 
RewriteCond %{HTTP_REFERER} !^http://(www\.)?localhost.*$ [NC] 
RewriteRule \.(gif|jpg|pdf)$ - [F]

0 个答案:

没有答案