在 Lighttpd Web 服务器上使用 PHP 检测 ajax 请求
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您可以让 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?