1\那就是把 *.iloveyou.io解释到服务器默认网站
2\在项目Global的事件protected void Application_BeginRequest(Object sender, EventArgs e)中通过
string _path = Request.Url.AbsoluteUri;
读取当前路径,然后做处理就是了!
把
_path="http://liangsan.iloveyou.io/ "
的路径变为
newurl="love/?toName=liangsan"
然后通过
HttpContext.Current.RewritePath(newurl);
就搞定了!就这么简单!