GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Redirect to sponsor based on geo or language (https://gfy.com/showthread.php?t=1369662)

LouiseLloyd 10-23-2023 11:26 AM

Redirect to sponsor based on geo or language
 
Trying to find a solution for this:

Wanting to redirect URL base on vistors geo location or browser language:

EG. Visitor clicks link: Geo location or browser language EN-GB = redirects to sponsor A, EN-US = to Sponsor B, IT = to sponsor C, ES = to sponsor D.

Pretty much how geolocation redirect of a site works, but set individually per URL.

I initially thought it would be quite simple using htaccess redirect for each URL but struggling.

Any help, tips or point me in the direction of a guide.

:smilie_we

Klen 10-23-2023 12:06 PM

Did you configured geo database ?

zawali 10-23-2023 03:08 PM

<script>

switch(navigator.language) {
case 'en-GB':
redirectURL='url targeting UK people'
break;
case 'en-US':
redirectURL='url targeting USA people'
break;
case 'en-AU':
redirectURL='url targeting AUSTRALIA people'
break;
case 'fr-FR':
redirectURL='url targeting FRANCE people'
break;
case 'es-ES':
redirectURL='url targeting SPAIN people'
break;
case 'it':
redirectURL='url targeting ITALY people'
break;
case 'de-DE':
redirectURL='url targeting GERMANY people'
break;
case 'en-CA':
redirectURL='url targeting english speaking canadian people'
break;
case 'fr-CA':
redirectURL='url targeting french speaking canadian people'
break;
default:
redirectURL='url targeting anyone in any area not set above'
}

</script>


All times are GMT -7. The time now is 11:10 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123