在 WordPress 中提交表单

发布于 2024-11-03 09:19:50 字数 176 浏览 1 评论 0原文

你好 我还有另一个非常奇怪的问题。 我在 WordPress 页面中有一个自定义 HTML 表单,其目标设置为“http://domain.com/contact-us/”之类的页面 提交表单时,即使 URL 与联系页面相同,也会显示“404-Nothing Found”。

有什么建议吗???

谢谢...

Hi
I have another very strange problem.
I have a custom HTML form in wordpress page whose target is set to a page like "http://domain.com/contact-us/"
When when the form is submitted, it said "404-Nothing Found" even if the URL is same as the Contact page.

Any suggestions ???

Thanks...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦年海沫深 2024-11-10 09:19:50

您的表单字段之一的名称属性是否等于“姓名”或“电子邮件”?

WordPress 似乎保留了其中一些名称属性值,如果您使用它们,会将您推送到 404 页面。谢谢Wordpress!

尝试在所有表单字段前添加一些前缀,看看这是否是问题所在,

例如:

<input name="name" />

应该变成

<input name="test-name" />

Does one of your form fields have a name attribute equal to "name" or "email"?

Wordpress seems to reserve some of these name attribute values and will push you out to a 404 page if you use them. Thanks Wordpress!

Try prefixing all form fields with something to see if this is the problem

eg:

<input name="name" />

should become

<input name="test-name" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文