2

我正在发送一个带有相对 url 的 ajax 请求

 $.post("wp-content/themes/site/function.php", {

    }, function (data) {});

如果我的网址是http://yourdomain.com/page ,它工作正常。但如果网址是http://yourdomain.com/page/

然后它发送http://yourdomain.com/page/wp-content/themes/site/function.php。但我想要http://yourdomain.com/site/wp-content/themes/function.php

4

1 回答 1

6

尝试领先/

$.post("/wp-content/themes/site/function.php", {}, function (data) {});
于 2013-10-23T16:15:59.380 回答