需要根据访问者所在国家/地区包含一个或另一个文件

发布于 2024-08-30 07:10:00 字数 95 浏览 10 评论 0原文

来自新西兰、斐济或印度这 3 个国家/地区的访问者分别需要不同的内容页面。该网站是用 PHP 编写的,内容是 HTML 文件,可以包含在内......我是一个新手;请耐心等待!

Visitors from either of 3 countries - New Zealand, Fiji or India - need a different content page respectively. The site is written in PHP, the content is in HTML files ready to be included.... I'm a newb; please be patient!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

相思碎 2024-09-06 07:10:00

使用 Google 的 AJAX API 加载器来粗略估计用户的位置非常容易。粗略地说:

<script src="http://www.google.com/jsapi"></script>
<script type="text/javascript">

// Note that you should have some sanity checks here, and maybe use an onLoad
// event of some kind
alert(google.loader.ClientLocation.address.country);

</script>

您可以让用户从一个页面开始,然后使用 JavaScript 将他们重定向到适当的位置。如果您正在使用任何流行的 JavaScript 库,您可能已经在使用此加载器(如果没有,您应该考虑通过它加载您的库)。

http://code.google.com/apis/ajax/documentation/#ClientLocation< /a>

It's pretty easy to use Google's AJAX API loader to get a rough estimate of the user's location. Roughly:

<script src="http://www.google.com/jsapi"></script>
<script type="text/javascript">

// Note that you should have some sanity checks here, and maybe use an onLoad
// event of some kind
alert(google.loader.ClientLocation.address.country);

</script>

You could have the user start at a page that would then use JavaScript to redirect them to the appropriate location. If you're using any popular JavaScript libraries, you may already be using this loader (and if not, you should consider loading your libraries through it).

http://code.google.com/apis/ajax/documentation/#ClientLocation

任性一次 2024-09-06 07:10:00
  • 获取访问者的 IP
  • IP 映射到其 位置
  • 根据以下条件执行条件 include
    地点
  • Get the visitor's IP
  • Map the IP to its location
  • Do a conditional include based on the
    location
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文