0

这就是我在浏览器中看到的,在完成http://wp.smashingmagazine.com/2013/04/08/moving-wordpress-website/的步骤之后

警告:输入中的意外字符:第 17 行 /home4/brycepj/public_html/index.php 中的 ''' (ASCII=39) state=1

解析错误:语法错误,意外的“。” 在第 17 行的 /home4/brycepj/public_html/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 ('./dev/wp-blog-header.php);

我错过了什么?提前致谢!

4

1 回答 1

0

弄清楚了!只是在 wp-blog-header.php 之后缺少一个撇号 --- 如果您使用的是 Smashing Magazine 的教程,这就是您的问题。我直接从他们的帖子中复制并粘贴。

于 2013-09-20T00:11:55.850 回答