我尝试将wordpress网站复制到我的PC上,以便使用WAMP进行脱机编辑。我逐字学习了下面的教程。
How to create a local copy of a wordpress site
我已将文件放在C:\\wamp\\www\\wordpress中
我看到了在wp配置中添加以下内容的地方。php,但它仍然指向我的网站。
define(\'WP_HOME\',\'http://localhost/wordpress\');
define(\'WP_SITEURL\',\'http://localhost/wordpress\');
我百分之百确定我的数据库中的wp\\u options表只引用
http://localhost/wordpress
那么我的现场地址是从哪里来的呢?
更新1:我刚刚注意到我的wp配置底部有以下内容。php
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*/
define(\'WP_DEBUG\', false);
define(\'WP_ALLOW_MULTISITE\', true);
define( \'MULTISITE\', true );
define( \'SUBDOMAIN_INSTALL\', false );
$base = \'/\';
define( \'DOMAIN_CURRENT_SITE\', \'www.mywebsite.co.uk\' );
define( \'PATH_CURRENT_SITE\', \'/\' );
define( \'SITE_ID_CURRENT_SITE\', 1 );
define( \'BLOG_ID_CURRENT_SITE\', 1 );
/* That\'s all, stop editing! Happy blogging. */
/** Absolute path to the WordPress directory. */
if ( !defined(\'ABSPATH\') )
define(\'ABSPATH\', dirname(__FILE__) . \'/\');
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . \'wp-settings.php\');
上面写着
define( \'DOMAIN_CURRENT_SITE\', \'www.mywebsite.co.uk\' );
(显然更改了我的邮寄地址)如果我也更改了
define( \'DOMAIN_CURRENT_SITE\', \'localhost/wordpress\' );
我得到一个重定向循环。这是相关的还是我在改变一些我不需要的东西,问题在哪里?
更新2:这与我的网站上的wordpress文件在www
文件夹,在本地,它们位于www/wordpress
文件夹