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内部服务器错误。(这是一个私人开发网站,所以没有链接)

你知道我应该从哪里开始寻找这个问题吗?

如果有人遇到这种情况,错误是在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

相关内容

  • 没有找到相关文章

最新更新