ip block için

<script type=”text/javascript”>

//input the IP list, separated by commas
var bannedips=[”23.23.23.23″, “11.11.11.11″]

var ip = \’<!–#echo var=”REMOTE_ADDR”–>\’
var handleips=bannedips.join(”|”)
handleips=new RegExp(handleips, “i”)

if (ip.search(handleips)!=-1){
alert(”Sorry, you are not allowed visiting this site…. Redirecting !”)
// Put your alert here.

window.location.replace(”www.angellica2017.com”)
// Blocked IP will be automatically redirected to WWW.ANGELLICA 2017.COM

</script>