Hello,
Using MVC. Is there a way to make any url like .Mysite.com to point to mysite.com/user/
as in http://marwan.mysite.com to point to mysite.com/user/marwan
The controller is user and the action is index which takes marwan as its variable.
One idea i had is to make a custom error page to handel 404 and see if the url starts with somthing like *.mysite.com and redirect to the proper controller. However i am sure there must be a better way to do this!