我在我的本地主机上运行 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();