如何在嵌套子域(例如:project1.dev.website.com)上安装WordPress?
我只得到一个白色的屏幕,但是当我编辑index.php
使其包含echo "Test";
时,它将出现在屏幕上。
<?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( dirname( __FILE__ ) . '/wp-blog-header.php' );
echo "Test";
此代码输出:
输出:测试
我在做什么错了?
答案 0 :(得分:1)
创建新的PHP文件“ wp-config.php”
打开“ wp-config-sample.php”,复制所有代码并将其粘贴到“ wp-config.php”
答案 1 :(得分:0)
您的wp-config.php看起来如何? 顺便说一句。您不需要安装向导。您可以通过在wp-config中配置数据库来安装WordPress。