APACHE禁用OPTION方法

未禁用OPTION方法火狐访问

APACHE禁用OPTION方法_第1张图片

 

禁用APACHE,OPTION方法

编辑httpd.conf


    ServerAdmin [email protected]
    ServerName 192.168.15.63
    DocumentRoot /home/w/html/zt2878
    

#禁用OPTION方法,添加以下几行代码
        
            Order deny,allow
            Deny from all
        

    
    ErrorLog "logs/zt2878-error_log"
    CustomLog "logs/zt2878-access_log" combined

重启apache生效

 

再次使用火狐访问如下:

APACHE禁用OPTION方法_第2张图片

 

你可能感兴趣的:(Ubuntu,Apache)