Searched for a few hours with no avail so here goes...
I have a domain which is receiving quite a few hits per day and have been asked if I can serve the static content from a subdomain. As the site is quite extensive and already written, I was wondering if there 开发者_如何转开发is any way I can use URL rewriting to change:
www.example.com/image.gif
to
static.example.com/image.gif
I have a solution which works using 301 redirects but from what I understand, this is counter productive as 2 requests will have to be made per image. I don't really want to go through all the aspx pages and css to hard code the new url as it will cause problems further down the line - some parts of the site are still being developed and static content could change at any time. I tried using rewrite (as opposed to redirect) to change the url but it came out something like:
http://www.example.com/http://static.example.com/image.gif
How would you achieve this? I have full access to dns and the server (win 2008r2 / IIS 7.5) so can make any changes if url rewriting is not the answer.
Thanks in advance
Tom.
You can accomplish this using an HttpModule. The following example captures all requests for gif files, and changes the absolute path to point to your alternate site that hosts the static content. Try this method inside of a HttpModule:
private void Application_BeginRequest(Object source, EventArgs e)
{
// Create HttpApplication and HttpContext objects to access
// request and response properties.
HttpApplication application = (HttpApplication)source;
HttpContext context = application.Context;
string filePath = context.Request.FilePath;
string fullPath = context.Request.Url.AbsoluteUri;
string fileExtension = VirtualPathUtility.GetExtension(filePath);
if (fileExtension.Equals(".gif"))
{
context.Response.ContentType = "image/gif";
context.Response.Redirect(fullPath.Replace("www.example.com", "static.example.com"));
}
}
For more about HttpModule, go here: http://msdn.microsoft.com/en-us/library/ms227673.aspx
I tested the above code - it works. I hope this helps.
精彩评论