404 error when calling php

时间:2019-11-03 作者:Dahere

                <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目录中。这里有什么想法吗?”?

1 个回复
SO网友:Nitin Sharma

请尝试

<form method="post" action="<?php echo get_template_directory_uri() ?>/abc.php">
我假设abc。php位于主题文件夹中。

相关推荐