PHP restrictions on IP segment access, prohibit IP submission form code sharing _php Tips

Source: Internet
Author: User

It is OK to add the following code to the page where you want to disallow access or submit the form.

Note: The bottom is just a PHP restricted IP instance code, if you intend to apply to the CMS, please modify it yourself.

<?php/plus IP access limit if (getenv (' http_client_ip ') && strcasecmp (getenv (' http_client_ip '), ' unknown ')} {$userip = 
getenv (' http_client_ip '); } elseif (getenv (' http_x_forwarded_for ') && strcasecmp (getenv (' http_x_forwarded_for '), ' unknown ')} {$userip = 
getenv (' http_x_forwarded_for '); } elseif (getenv (' remote_addr ') && strcasecmp (getenv (' remote_addr '), ' unknown ')) {$userip = getenv (' Remote_ 
ADDR '); } elseif (Isset ($_server[' remote_addr ')) && $_server[' remote_addr '] && strcasecmp ($_server[' Remote_ 
ADDR '], ' unknown ') {$userip = $_server[' remote_addr ']; 
}//Restrict IP if ($userip = = ' 192.168.1.88 ') {header ("location:http://t.qq.com/wb631992791"), and/or be prohibited to jump to Weibo exit; 
//Limit IP segment $ip _arr = Explode ('. ', $userip); #限制的ip段, suppose to be 192.168.*.* if (! ($ip _arr[0] = = ' 168 ' && $ip _arr[1]== ')) 
{Header ("location:http://t.qq.com/wb631992791");//is forbidden to jump to Weibo exit; 
}else{header ("location:http://afish.cnblogs.com");/normal IP direct access to the small fish Pavilion home exit; 
 }?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.