尝试拒绝除一个域之外的所有连接

时间:2018-04-28 22:26:09

标签: apache .htaccess security virtualhost httpd.conf

我已经尝试了几个小时阻止除了我的域 httpd config。之外的所有连接,但是我无法连接到我自己的域。我刚收到禁止页面。

<VirtualHost *:80>
ServerName Server-VM
DocumentRoot /var/www/
    SetEnvIf Referer domain\.cc internal
    <FilesMatch "\.(avi|mp4)$">
    Order Deny,Allow
    Deny from all
    Allow from env=internal
   </FilesMatch>
</VirtualHost>

我的Apache版本:2.2.15 我做错了什么?

谢谢!

1 个答案:

答案 0 :(得分:0)

mod_access_compat提供的Allow,Deny和Order指令已弃用,将在以后的版本中消失。您应该避免使用它们,并避免过时的教程建议使用它们。

尝试

boolean flag = false;
for (int i = 5; i > 0; i--) {
     System.out.println("Starting in " + i); 
     Thread.sleep(1000);     // Execution pauses
     if(sc.hasNext())
         flag = true;

     }
 }
 if(flag) { 
 // call your function 

 }

来自https://httpd.apache.org/docs/2.4/howto/access.html的更多信息