<html>
<body>
***<form action="abc.php" method="post">
First Name: <input type="text" name="firstname"><br>
Last Name: <input type="text" name="lastname"<br>
E-mail: <input type="text" name="email"><br>
<input type="submit">
</form>
</body>
</html>***
</div>
使用页面。php作为模板,我添加了一个简单的html表单,并调用了一个php文件(添加的html代码在上面用粗体和斜体表示)。表单显示完美。然而,按submit时,我得到一个404,因为它找不到“abc.php”。生成404的URL为:“
https://www.example.com/index.php/phpinserttest/abc.php“。所有文件都在../themes目录中。这里有什么想法吗?”?