A
aag
Hey there! I've got an URL rewrite issue that I'm wondering if the
masters out there can help with
I have a site that resides at (for example) foo.com - it's a full
site with tons of pages that users would need to get access to.
However, I'd like to have a special feature of that same ASP.NET
application such that if a users goes to:
bla.foo.com/name
It would actually redirect via URL rewrite to foo.com/function.aspx?
ident=<i>name</i>
Is that possible? Or do I need to write an HTTP handler to intercept
ALL http traffic, search for the URL, forward if necessary, or pass on
to the default handler if not? (how do you pass a request on to the
default handler in an HTTP Handler, anyway?)
masters out there can help with
I have a site that resides at (for example) foo.com - it's a full
site with tons of pages that users would need to get access to.
However, I'd like to have a special feature of that same ASP.NET
application such that if a users goes to:
bla.foo.com/name
It would actually redirect via URL rewrite to foo.com/function.aspx?
ident=<i>name</i>
Is that possible? Or do I need to write an HTTP handler to intercept
ALL http traffic, search for the URL, forward if necessary, or pass on
to the default handler if not? (how do you pass a request on to the
default handler in an HTTP Handler, anyway?)