我最终使用了这样的解决方案:
1) 创建的文件夹如下:
wp-base
- wp-admin
- wp-includes
- .... all wp-php files
我创造了“
symlink“其他文件夹中的2文件夹和wp标准php文件:
my-wp-1
- wp-content & wp.config.php & htaccess
my-wp-2
- wp-content & wp.config.php & htaccess
我唯一要做的就是在
wp-load.php
:
$fold=filter_var($_SERVER[\'HTTP_HOST\'], SANITIZE_STRING);
/** Define ABSPATH as this file\'s directory */
if ( ! defined( \'ABSPATH\' ) ) {
define( \'ABSPATH\', dirname(dirname( __FILE__ )). "/$fold/" );
}
似乎没有必要添加
define( \'WP_CONTENT_DIR\', __DIR__.\'/wp-content\' );
在wp配置中。