shop-check.js
308 Bytes
/**
* Created by PhpStorm.
* User: Targaryen
* Date: 2016/8/29
* Time: 15:27
*/
'use strict';
module.exports = () => {
return (req, res, next) => {
if (req.subdomains.length) {
req.url = '/product/index/brand?domain=' + req.subdomains[0];
}
next();
};
};