3

私はwww.propertyhere.comを持っています

インデックス ページに Jquery コードを挿入して、訪問者を地理的な IP アドレスに従って次のページにリダイレクトしたいと考えています。

 if user ip is from AU then show:
 http://www.propertyhere.com/Country/AU/search-to-buy;

 if user ip is from CA then show:
 http://www.propertyhere.com/Country/CA/search-to-buy;

 if user ip is from NZ then show:
 http://www.propertyhere.com/Country/NZ/search-to-buy;

 if user ip is from US then show:
 http://www.propertyhere.com/Country/US/search-to-buy;

 if user ip is from CN then show:
 http://www.propertyhere.com/Country/CN/search-to-buy;

 if user ip is from RU then show:
 http://www.propertyhere.com/Country/RU/search-to-buy;

訪問者の IP が上記の場所と一致しない場合は、訪問者をホームページに留まらせます。

4

1 に答える 1

3

http://geoiplookup.wikimedia.org/などのサービスを使用して、単純なajaxリクエストを実行できます。これにより、必要なすべての詳細がわかります。

このようなドームのことは役立つかもしれません:

$.ajax('http://geoiplookup.wikimedia.org/', {
    crossDomain:true,
    success:function(data,text,xhqr){
        alert(data);
    },
    error:function(xhr, textStatus){
        alert(xhr.responseText);
    }
});
于 2013-01-30T05:41:04.040 に答える