如何使用.htaccess文件Deny from all
限制访问,但是所有$ .post请求,$ .get请求等等。我怎样才能从页面访问该文件,但只需转到直接访问它在浏览器中?
答案 0 :(得分:0)
您可以通过mod_rewrite使用HTACCESS和
等条件禁用浏览器访问RewriteCond %{HTTP_USER_AGENT} ^.*Firefox/4.*$
RewriteRule . - [R=404,L,NS]
ErrorDocument 404 /error.php?e=404
要访问该页面,您可以使用cURL和
等选项curl_setopt($ch, CURLOPT_USERAGENT, "allowed_agent");