0

我正在将我的 AJAX 请求 URL 设置http://www.domain.com为 javascript 文件本身所在的当前域。但是,如果我输入它,http://domain.com它将永远不会发送请求。我知道这在某种程度上是同源政策,但问题是直到现在我从未遇到过这个问题。顺便说一句,我正在重写我的所有请求index.php,这可能是相关的吗?并且可能是这样做的主机本身,因为在我的本地主机上一切都很好。

谢谢。

4

1 回答 1

1

Yes; the same-origin policy will prevent that.

You should use domain-relative URLs (/a/b/c...), which will just use the current domain.

于 2012-09-10T18:29:28.357 回答