Basically it's a 301 permanent or 302 temporary redirect that does it. How you implement it depends on what web server you're using. If it's on nix usually people do it in the htaccess file, or you can make index.php the default in
http://www.desitracker.com/ and then use that as php to return the redirect header to the other like
Code:
function redirect301(&$redirto) {
header( "HTTP/1.1 301 Moved Permanently" );
header( 'Location: http://www.desitracker.com/dynamics');
exit();