在 Lighttpd Web 服务器上使用 PHP 检测 ajax 请求

发布于 2024-09-25 02:28:28 字数 455 浏览 8 评论 0原文

我在 Lighttpd Web 服务器上使用 PHP 检测 jQuery ajax 请求时遇到了一些问题。下面是以下代码(在 MAMP 和 Apache 上运行良好):

if (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
     // ajax (not recognized on lighttpd server)
     echo json_encode(array('success'=>1));
 }
 else {
     // not ajax
 }

我想也许有某个 lighttpd 配置未正确设置,但没有看到任何我识别的内容。有人有这样的问题的经验吗?

谢谢!

I'm having some trouble with detecting a jQuery ajax request with PHP on a Lighttpd web server. Here's the following code (works fine on MAMP and Apache):

if (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
     // ajax (not recognized on lighttpd server)
     echo json_encode(array('success'=>1));
 }
 else {
     // not ajax
 }

I thought perhaps there's a certain lighttpd config that's not set correctly, but didn't see anything I recognized. Anyone have any experience with an issue like this?

Thanks!

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

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

发布评论

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

评论(1

[浮城] 2024-10-02 02:28:28

也许您可以让 ajax 请求将另一个变量附加到查询中。然后,您可以简单地仅测试 ajax $_REQUEST var,而不是测试 $_SERVER var。

你能分享一下 jQuery 代码吗?

Perhaps you can have the ajax request append another variable to the query. Then instead of testing for the $_SERVER var, you can simply test for the ajax only $_REQUEST var.

Can you share any of the jQuery code?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文