Authored by whb

配置

;profile
product.index.type = "rewrite"
product.index.match = "/product/$"
product.index.route.module = Product
product.index.match = "/sns/$"
product.index.route.module = Sns
product.index.route.controller = Index
product.index.route.action = Index
\ No newline at end of file
... ...
... ... @@ -6,7 +6,7 @@
* Time: 下午5:03
*/
namespace QProduct;
namespace QSns;
class Config
... ... @@ -20,13 +20,13 @@ class Config
* 模块名称
* @var string
*/
public static $modelsName = 'QProduct';
public static $modelsName = 'QSns';
/**
* app 模块名称
* @var array
*/
public static $appName = array(
'Product'
'Sns'
);
}
\ No newline at end of file
... ...