How to redirect visitor to country specific website

How to redirect visitor to your country specific website

  • June 1, 2022

Today we will talk about how to redirect visitors to your country specific website using custom snippet.

This snippet will work on your WordPress website.

/**
 * @snippet       Redirect visitor to country specific website
 * @author        Deep Prakash Goyal
 * @website       https://wpexpertdeep.com/
 */

add_action('wp_head', 'redirect_according_visiter_country');

function redirect_according_visiter_country(){
    $a = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip='.$_SERVER['REMOTE_ADDR']));
    $countrycode= $a['geoplugin_countryCode'];
    if ($countrycode=='IN'){
        header( 'Location: /in' . $_SERVER['REQUEST_URI'] );
    }else{
        header( 'Location: https://example.com');
    }
}

If your website is a non wordpress website then use this part of the code

$a = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip='.$_SERVER['REMOTE_ADDR']));
    $countrycode= $a['geoplugin_countryCode'];
    if ($countrycode=='IN'){
        header( 'Location: /in' . $_SERVER['REQUEST_URI'] );
    }else{
        header( 'Location: https://example.com');
    }

If this snippet not work on your server, use ob_start() function starting of the snippet and end with ob_end_clean();

Related Post

bb-theme-wordpress

BB Theme WordPress: A Comprehensive Review and Guide

Welcome to the world of BB Theme WordPress Are you searching for the perfect WordPress theme to bring your website to life? Look no further! BB WordPress Theme is here to help you design a […]

How-To-Delete-A-WordPress

How to Delete a Theme in WordPress: A Step-by-Step Guide

Easy Ways to Delete Any Theme in WordPress Do you want to remove a WordPress theme and are looking for guidance on how to do it? Removing a theme can help declutter your site and […]

Salient-WP

Salient WordPress Theme: A Comprehensive Guide for Beginners

If you’re looking for a WordPress theme that combines versatility, functionality, and style, the salient wordpress theme is worth considering. salient wordpress theme is a multi-purpose WordPress theme that caters to various niches, including business, […]