如何在嵌套子域上安装WordPress?

时间:2018-09-27 08:08:36

标签: wordpress installation

如何在嵌套子域(例如: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";

此代码输出:

  

输出:测试

我在做什么错了?

2 个答案:

答案 0 :(得分:1)

解决方案

  1. 创建新的PHP文件“ wp-config.php”

  2. 打开“ wp-config-sample.php”,复制所有代码并将其粘贴到“ wp-config.php”

  3. 现在开始使用数据库详细信息编辑“ wp-config.php”
  4. https://api.wordpress.org/secret-key/1.1/salt/获取安全密钥
  5. 完成!

    感谢Kenny Fox的帮助。

    编辑wp-config.php(有关使用wp-config.php的完整文档):https://codex.wordpress.org/Editing_wp-config.php

答案 1 :(得分:0)

您的wp-config.php看起来如何? 顺便说一句。您不需要安装向导。您可以通过在wp-config中配置数据库来安装WordPress。