我应该在哪里放第二页?

时间:2016-12-20 18:23:13

标签: web-services web apache2 http-status-code-404 putty

我有2个html页面。我把我的第一个html页面放在我的文档根目录(var / www)在apache 2中,它可以工作。它有一个移动第二页的按钮。当我在浏览器上输入我的IP时,我看到第一页我按登录但是404错误进来。我应该在哪里找到我的第二页?

这是我的代码

<html>
<h1>Welcome to e-flea market!</h1>
<table align="center" width="40%" height="88" bgcolor="rgb(21, 232, 246)">
<tr>

<td align="left" width="50">
<p align="left">
<font color="#ffffff" size="3">
Your name:<br>
</font>
<input type="text"><br>
<font color="#9DACCB" size="5">
</font>
</p>
</td>

<td align="left" width="100">
<p align="left">
<br>
<form method="get" action="\Users\Hp\.atom\2ndpage.html" >
<input type="submit" value="LOGIN">
</p>
</td>
</tr>
</table>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

假设2ndpage.html与您的第一页位于同一目录中,您可以将表单更新为:

<form method="get" action="2ndpage.html" >