Here, whitelist array contains all the ip address that we uses for xampp or Local server.
All all local ip address in the whitelist array and filter easily which is for local and which is for LIVE server url.
<?php $whitelist = array( '127.0.0.1', '::1', '192.168.2.10' ); if(in_array( $_SERVER['REMOTE_ADDR'], $whitelist)){ $serverHost = 'http://'.$_SERVER['HTTP_HOST'].'/mentor/'; }else{ $serverHost = 'http://'.$_SERVER['HTTP_HOST' ].'/'; } $PATH = $serverHost."abcsite/assets/"; ?>