domain.php 966 Bytes
<?php
/**
 * 域名配置
 * 
 *  @author  xiaoma 2012-6-27
 *  @return  array
 */
 
return array(
	/**
	 * 主域名
	 * 
	 * 当开启域名模式时,必须配置主域名
	 */
	'main_domain'		=>	'http://www.localhost.com',
	/**
	 * 当域名中(非主域名)没有指定任何模块或命名空间,可以对此域名进行配置默认的动作
	 * 	array(
	 * 		域名1	=>	'udi', //udi的规则与使用url函数时的udi规则一至
	 * 		域名2	=>	'udi',
	 * 	)
	 */
	'default_config' 	=>	array(
		'http://album.localhost.com'	=>	'album::default/ret',
		'http://passport.localhost.com' =>  'default::passport',
	), 
	/**
	 * 配置各个模块所使用的域名
	 * 
	 * 	array(
	 * 		'modules/namespace'	=>	'域名',
	 * 		'modules/namespace'	=>	'域名',
	 * 	)
	 *  注: modules:模块   namespace:模块中的分组
	 */
	'config'	=>	array(
		'default/album'		=>	'http://album.localhost.com',
		'default/passport'	=>	'http://passport.localhost.com',
	),
);