我正在使用 ExpressJS 开发应用程序。我想在这个应用程序上使用子域。(虚拟子域)
有什么办法可以解释这个网址;
http://customer_name.mysite.com
作为
http://mysite.com/customer_name
我当前在 cntroller 上的 url 映射是这样的;
app.get('/:customer_name/?', function(req, res, next) {
//something functions
});
提前致谢