在LAMP环境搭好,且Wordpress已经安装好后,访问/wp-admin页可以正常访问。但是就是前台页面为空,或者显示了网页文件夹另一个index页面的内容。

当时我也意识到,这是个小得不能再小的问题,但如果对问题不理解时它有会显得很难。

在安装Wordpress后,默认的index.php已经在里面了。但是我的那份里面是不完整的代码,甚至注解里面还有英文“沉默是金”的字样。这时候,只要正确创建好index.php就行了。

正确的index.php内容(即Wordpress安装时默认内容)如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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');
?>

注意,Wordpress设置里站点位置不要弄错。

参考:Default WordPress index.php file – Ryan’s Guides (dream.press)