将wordpress移动到子域时出错

时间:2013-09-30 19:56:17

标签: php wordpress

将WordPress移动到子目录中并出现此错误:

  

致命错误:函数名称必须是字符串   第17行/home/content/61/11855861/html/wordpress/index.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 $wordpress ('/wordpress/wp-blog-header.php');

2 个答案:

答案 0 :(得分:3)

你的错误就在这一行

require $wordpress ('/wordpress/wp-blog-header.php');

这不是WordPress的index.php脚本中的默认行。 $wordpress变量未定义,即使已定义,也未正确连接。默认值为

require('./wp-blog-header.php');

答案 1 :(得分:0)

您是否查看过这个链接:

Giving WordPress Its Own Directory

此外:

Moving WordPress

额外注意:如果您遇到固定链接问题,则应将固定链接设置返回default,然后将其再次返回给您自己的选择