Wordpress禁用网络(wpmu到单个安装)

时间:2014-06-17 23:57:48

标签: wordpress wpmu

我正在尝试使用我的多站点wp安装并禁用网络,因此它只是主站点上的单个安装。我将旧的buddypress论坛迁移到bbpress(成功),禁用了所有网络活动插件,删除了我们没有需要的所有网络,包括bp,并重新激活了主博客上所有插件的更新版本。在这一点上,一切都很酷。

然后我按照此链接http://premium.wpmudev.org/blog/how-to-uninstall-wordpress-multisite/上的说明进行了说明。这包括通过删除以下内容来编辑wp-config:

define( 'MULTISITE', true );
define( 'SUBDOMAIN_INSTALL', false );
$base = '/wordpress/';
define( 'DOMAIN_CURRENT_SITE', 'localhost' );
define( 'PATH_CURRENT_SITE', '/wordpress/' );
define( 'SITE_ID_CURRENT_SITE', 1 );
define( 'BLOG_ID_CURRENT_SITE', 1 );

并将此行从true更改为false:

define('WP_ALLOW_MULTISITE', false);

然后在htaccess中编辑以下内容,使其显示为:

RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index.php$ - [L]

# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [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]

然后我删除了垃圾邮件并删除了wp_users表中的列并删除了以下内容:

wp_blogs
wp_blog_versions
wp_registration_log
wp_signups
wp_site
wp_sitemeta

这给我留下了500内部服务器错误。 (这是一个私人开发网站,所以没有链接)

关于我应该从哪里开始追捕问题的任何想法?

1 个答案:

答案 0 :(得分:1)

如果有其他人碰到这个,错误发生在htaccess代码中,当前的基本wp如下为3.4及以上:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress