我发送了一个带相对网址的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
答案 0 :(得分:6)
尝试使用前导/
:
$.post("/wp-content/themes/site/function.php", {}, function (data) {});