我正在尝试在 PHP 文件 ( helpers.php
) 中运行一个函数,并且该文件位于/includes/
文件夹中。
如果我将它放在与( ) 文件helpers.php
相同的目录中,那么该函数将被调用并运行 - 但如果我将它保存在文件夹中然后使用 url:它将不会运行并说文件不存在。index.php
/html/
/includes/
/../includes/helpers.php
这是我在本地机器上使用以下代码时遇到的错误:
http://webds:8000/includes/helpers.php 404 (Not Found)
这是我的代码 - 我将如何调整它以/includes/helpers.php
正确访问?
$.ajax(
{
type: 'POST',
url: '/../includes/helpers.php',
data: {'func':'addSKU'},
success: function(data)
{
alert(data);
}
});
这是结构 - 这是在我们的网络上,根是 html 目录。
/html
index.php
/includes
helpers.php
config.php
/views
/templates
header.php
footer.php
index.php
addSKU.php
quotes.php