Is there any way of adding a route mapping in Global.asax so that routes that contain a certain string (say "Content") are mapped to a different url (say "Content/gz") if a certain http header is present?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You could parse the header in the Content controller and do a redirect to Content/gz if it's gzipped. |
|||||||||
|
|
Ended up fixing it by keeping a global Content url that gets updated on each request depending on the presence of the accept-gzip header is present. |
|||
|
|