0

目标:将多站点 WordPress 安装移动到本地主机

环境:Ubuntu 10.4 上的 LAMPP。

我正在将一个多站点 wordpress 安装移动到本地主机。我已完成的步骤:

使用备份 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]

当我使用 url 访问我的网站时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 的新手。

4

1 回答 1

0

这些线

define('DOMAIN_CURRENT_SITE', 'localhost/wordpress');
define('PATH_CURRENT_SITE', '/wordpress/');`

一定是:

define('DOMAIN_CURRENT_SITE', 'localhost');
define('PATH_CURRENT_SITE', '/wordpress/');
于 2013-02-15T09:41:56.067 回答