我通过 FTP 下载了所有文件并将它们粘贴到我的“www/mysite-live”文件夹中。
我正在使用 WAMP。我确实下载了实时 SQL 文件并通过 localhost/phpmyadmin 将其导入。
我确实更改了我的 wp-config.php 配置。
define('WPLANG', '');
define('WP_HOME','http://localhost/mysite-live');
define('WP_SITEURL','http://localhost/mysite-live');
define('DB_NAME', 'mysite_db');
/** MySQL database username */
define('DB_USER', 'root');
/** MySQL database password */
define('DB_PASSWORD', '');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
现在,当我查看时,http://localhost/mysite-live/
我只能查看主页,而无法访问其他页面和帖子。我得到404。
似乎是什么问题。我错过了什么?