我正在尝试使用按钮从非 wordpress 静态主页(index.html)启动 wordpress 网站。
index.html 将为用户提供一个选项,让他们留下他们的电子邮件联系信息,或者在他们单击“Enter”按钮时将他们重定向到我创建的 wordpress 网站。
当标准 wordpress index.php 文件位于站点根目录中时,wordpress 站点可以正常工作。当我用我自己的 index.html 文件(带有按钮和联系代码)替换这个文件时,我无法启动 wordpress index.php 文件。我将原来的 wordpress index.php 重命名为 indexWP.php 并使用此处的代码建议从我的新 index.html 文件中调用该文件: A button to start php script, how?
<form action="indexwp.php" method="get">
<input type="submit" value="Enter">
</form>
当我使用上述内容时,当我单击 Enter 时,它会给我一个 404 Page Not Found 错误。
原始的 Wordpress index.php 看起来像这样(重命名为 indexwp.php):
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */
require('./wp-blog-header.php');
我是一个菜鸟,所以我怀疑这是我对上述示例代码的误解。