-
as seen on Developer IT
- Search for 'Developer IT'
Introduction
I often map html extention to the asp.net dll in order to use url rewritter with .html extentions. Recently, in the new version of www.nouvelair.ca, we renamed all urls to end with .html. This works great, but failed when we used FCK Editor. Static html files would not get serve because…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
Hi,
I have a website running at www.domain.com. The client now wants the website to appear to be running under www.otherdomain.com/whatson/brand/
Since the website is umbraco it won't run under a subfolder.
I wanted to use ISAPI rewrite to proxy requests to www.domain.com using the following rule…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Today wanting to deploy an asp.net mvc application I had to enable .NET Extensibility, ASP.NET, ISAPI Extensions, and ISAPI Filters on Win Small Buisness Server 2008 I was surprised 1h and I could not find how to do it.
This was the hint but ... still nothing.
http://blogs.dovetailsoftware.com/blogs/kmiller/archive/2008/10/07/deploying-an-asp-net-mvc-web-application-to-iis7…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have an ISAPI filter that I am using to do URL rewriting for my CMS. I am processing SF_NOTIFY_PREPROC_HEADERS notifications, and trying to do this:
DWORD ProcessHeader(HTTP_FILTER_CONTEXT *con, HTTP_FILTER_PREPROC_HEADERS *head)
{
head->SetHeader(con, "test1", "aaa");
con->AddResponseHeaders(con…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I wrote this ISAPI filter to rewrite the URL because we had some sites that moved locations... Basically the filter looks at the referrer, and if it's the local server, it looks at the requested URL and compared it to the full referrer. If the first path is identical, nothing is done, however if…
>>> More