您可以移动安装以及插件和内容文件夹。以下来源对此进行了说明。
//*
// Custom content directory
define( \'WP_CONTENT_DIR\', dirname( __FILE__ ) . \'/wp-content\' );
define( \'WP_CONTENT_URL\', \'http://\' . $_SERVER[\'HTTP_HOST\'] . \'/wp-content\' );
// Custom plugin directory
define( \'WP_PLUGIN_DIR\', dirname( __FILE__ ) . \'/wp-plugins\' );
define( \'WP_PLUGIN_URL\', \'http://\' . $_SERVER[\'HTTP_HOST\'] . \'/wp-plugins\' );
// Custom mu plugin directory
define( \'WPMU_PLUGIN_DIR\', dirname( __FILE__ ) . \'/wpmu-plugins\' );
define( \'WPMU_PLUGIN_URL\', \'http://\' . $_SERVER[\'HTTP_HOST\'] . \'/wpmu-plugins\' );
/**/
代码示例的源代码。
https://github.com/bueltge/WordPress-Starter/blob/master/wp-config.php