我在Stackoverflow Such as This 和网上研究了很多问题,但没有一个能解决我的问题。
我在域X上工作的多站点工作得很好。现在我将它移动到我的服务器,所有数据库URL替换。我也相应更改了wp-config
和htaccess
。
问题在于,当我设置define('MULTISITE', false);
为false
时,只有基本网站运行,而对于其他子网站则会出现404
错误。
但我有多站点,我刚刚转到我的实例,必须MULTISITE
作为true
才能让多站点工作。
现在,当我将其设置为true时,我得到了
建立数据库连接时出错
错误。我不知道究竟发生了什么。我调试但无法解决它。
我的多站点配置代码
/* Multisite */
define('WP_ALLOW_REPAIR', true);
define('MULTISITE', true);
define('WP_ALLOW_MULTISITE', true);
//define('RELOCATE',true);
define('SUBDOMAIN_INSTALL', false);
define('DOMAIN_CURRENT_SITE', 'localhost');
$base = '/';
define('PATH_CURRENT_SITE', '/smart_facility_linux/');
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
//我的Htaccess(它没有任何问题)
RewriteEngine On
RewriteBase /smart_facility_linux/
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]
#RewriteRule ^privacy-statement.html /privacy-statement [L]
答案 0 :(得分:3)
我解决了它&它工作:)
在wp_blogs
表中,
旧结构是
Domain : localhost/smart_facility_linux
Path : /
但是我把它更改为使其工作如下:
对于根网站:
Domain : localhost
Path : /smart_facility_linux/
对于子站点1(主站点下的任何子站点,我只举例):
Domain : localhost
Path : /smart_facility_linux/subsite1/