在新的安装中使用数据库 时间:2014-03-05 作者:Hommer Smith 我的生产环境中有一个Wordpress实例。我在我的开发机器中创建了一个新的原始安装,并从生产中导入了数据库。我已经更改了wp\\u选项表,以确保site\\u url和home实际上指向我在本地计算机中的命名url。然而,当我访问该网站时,它没有显示任何内容。我错过了什么或需要做什么? 1 个回复 最合适的回答,由SO网友:s_ha_dum 整理而成 Enable debugging这样你就能发现问题Alter the database connection information in wp-config.php// ** MySQL settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define( \'DB_NAME\', \'database_name_here\' ); /** MySQL database username */ define( \'DB_USER\', \'username_here\' ); /** MySQL database password */ define( \'DB_PASSWORD\', \'password_here\' ); /** MySQL hostname */ define( \'DB_HOST\', \'localhost\' ); 您还可以通过硬编码几个Web地址来消除一些问题。如果您有连接问题,我建议您这样做。define( \'WP_SITEURL\', \'http://example.com/wordpress\' ); define( \'WP_SITEURL\', \'http://\' . $_SERVER[\'HTTP_HOST\'] . \'/path/to/wordpress\' ); 使用“Velvet Blues UpdateUrls”等插件更改嵌入的链接URL根据第1项,可能需要进行其他工作 结束 文章导航