0

我在我的本地主机上运行 WordPress 并尝试使用 ajax 将请求从我的插件文件发送到另一个名为 photos.php 的文件,我已经在 xmlhttp.open 函数中正确写入了文件的地址,但它遇到了以下错误。

Not Found

The requested URL /wordpress/wp-admin/wp-content/plugins/myphoto/photos.php was not found on this server.

文件的实际地址是/wordpress/wp-content/plugins/myphoto/photos.php

xmlhttp.open("GET","wp-content/plugins/myphoto/photos.php?c="+option,true);
            xmlhttp.send();
4

1 回答 1

0

尝试设置绝对路径:

xmlhttp.open("GET","/wordpress/wp-content/plugins/myphoto/photos.php?c="+option,true);

您的错误意味着您正在使用相对路径。目录/wordpress/wp-admin/wp-content...不存在。

于 2013-01-19T00:54:58.213 回答