ms_file_constants()

最后更新于:2021-11-27 16:16:29

ms_file_constants()

Defines Multisite file constants.

源文件

文件: gc-includes/ms-default-constants.php

function ms_file_constants() {
	/**
	 * Optional support for X-Sendfile header
	 *
	 * @since 3.0.0
	 */
	if ( ! defined( 'GCMU_SENDFILE' ) ) {
		define( 'GCMU_SENDFILE', false );
	}

	/**
	 * Optional support for X-Accel-Redirect header
	 *
	 * @since 3.0.0
	 */
	if ( ! defined( 'GCMU_ACCEL_REDIRECT' ) ) {
		define( 'GCMU_ACCEL_REDIRECT', false );
	}
}