找不到对象!在此服务器上找不到请求的 URL。 PHP文件未被访问
Posted
技术标签:
【中文标题】找不到对象!在此服务器上找不到请求的 URL。 PHP文件未被访问【英文标题】:Object not found! The requested URL was not found on this server. PHP file not being accessed 【发布时间】:2015-08-23 16:45:27 【问题描述】:我安装了 Xampp 并运行本地服务器以测试我的 php 代码。所以我做了一个简单的表单,它有一个提交按钮,并且有 action = seenotes.php 和 onSubmit = seenotes.php
问题是当我点击提交时出现错误: 找不到对象! 在此服务器上找不到请求的 URL。错误 404。
网址如下所示:http://localhost/MagodaSystems/seenotes.html?note=as&submit=Enter
看到 url 中的 seenotes.html 部分了吗?该文件不存在,我希望将其定向到 seenotes.php。当我手动将链接的那部分更改为 seenotes.php 时,我得到了所需的页面。我该如何解决这个问题,以便它自动重定向到正确的 php 页面?我所有的文件都在 htdocs 的一个文件夹中。
【问题讨论】:
***.com/questions/10965306/… 。看看这个问题,可能对你有帮助 那么,你想要the server to treat the HTML as PHP吗? 你在使用框架吗? 【参考方案1】:以这种方式使用表格:
<form method = "post" action = "seenotes.php" >
<!--you can also use method = "GET" as per your requirement.Sice you said all files are in same folder i gave action as the file name
all your input fields are here -->
<input type = "submit" />
</form>
【讨论】:
以上是关于找不到对象!在此服务器上找不到请求的 URL。 PHP文件未被访问的主要内容,如果未能解决你的问题,请参考以下文章