目标:将多站点WordPress安装移至localhost
环境:Ubuntu 10.4上的LAMPP。
我正在将mutlisite wordpress安装移动到localhost。我已完成的步骤:
使用备份sql文件重新创建db。 从服务器复制所有文件夹和文件并保存在htdocs下。 现在使用新生成的wp-config.php,当我尝试安装mutlisite时,我被要求将以下内容添加到wp-config.php
define('MULTISITE', true);
define('SUBDOMAIN_INSTALL', false);
define('DOMAIN_CURRENT_SITE', 'localhost/wordpress');
define('PATH_CURRENT_SITE', '/wordpress/');
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
我还在.htaccess中添加了以下内容:
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
当我使用网址http://localhost/wordpress
访问我的网站时,我被带到http://localhost/wordpress/wordpress/
并收到错误消息,指出Firefox has detected that the server is redirecting the request for this address in a way that will never complete
。
请帮我正确设置。
PS:我是Wordpress的新手。
答案 0 :(得分:0)
这些行
define('DOMAIN_CURRENT_SITE', 'localhost/wordpress');
define('PATH_CURRENT_SITE', '/wordpress/');`
必须是:
define('DOMAIN_CURRENT_SITE', 'localhost');
define('PATH_CURRENT_SITE', '/wordpress/');