php中的相对网址

时间:2013-10-23 16:14:45

标签: javascript php ajax

我发送了一个带相对网址的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

1 个答案:

答案 0 :(得分:6)

尝试使用前导/

$.post("/wp-content/themes/site/function.php", {}, function (data) {});