您是否从头开始创建WordPress?您不需要创建wp-config.php
手动。只需从浏览器中打开已安装的WordPress,它就会为您运行安装程序。
如果从现有WordPress安装(从其他服务器/电脑)迁移,请在中检查数据库设置wp-config.php
文件
// ** MySQL settings ** //
/** The name of the database for WordPress */
define( \'DB_NAME\', \'amadeus\' );
/** MySQL database username */
define( \'DB_USER\', \'root\' );
/** MySQL database password */
define( \'DB_PASSWORD\', \'\' );
/** MySQL hostname */
define( \'DB_HOST\', \'localhost\' );