-
Posted to
IIS7 - General
by
DanielVL
on
11-04-2009, 8:15 PM
http://msdn.microsoft.com/en-us/library/microsoft.web.administration.servermanager.openremote.aspx ?
-
Posted to
IIS 7 - ASP.NET Administration
by
DanielVL
on
11-02-2009, 1:19 PM
URL Rewrite is cache friendly, meaning that for frequently hit URLs the redirection will happen really fast, a hashtable look up and then a native Redirect call. Expect great performance.
-
Posted to
IIS7 - URL Rewrite Module
by
DanielVL
on
08-18-2009, 1:40 PM
-s (file with size greater than zero) and -l (symbolic link) are not not available in IIS, but I guess you don't need it -l for IIS. Follow this article http://learn.iis.net/page.aspx/470/importing-apache-modrewrite-rules/ and remove both -s and -l switches. Test very well your application and you may also want to remove, in the converted ...
-
Posted to
IIS7 - URL Rewrite Module
by
DanielVL
on
08-13-2009, 12:29 PM
You can check if a requested URL is, or is not, a file by using <conditions><add type="IsFile" negate="true"/></conditions>, but if you are more familiar with Apache syntax, you can use the Import Rules features and type the Apache rules and then we'll do our best for translating the Apache syntax to IIS ...
-
Posted to
IIS 7.0 - Application Request Routing (ARR)
by
DanielVL
on
08-11-2009, 10:57 AM
Also, the XML is case sensitive, you must type "IsFile" instead of "isFile".
-
Posted to
IIS7 - URL Rewrite Module
by
DanielVL
on
07-31-2009, 8:48 PM
"Is there a better way to do this?" > I don't think so; looks like you will need a second map for redirects. To mitigate the issue, you could write a script to keep them on sync.
-
Posted to
IIS7 - URL Rewrite Module
by
DanielVL
on
07-31-2009, 12:49 AM
Hello,
Do you really need a rewrite map? It looks like a rule that matches search/*/* and rewrites to search.aspx?val1={R:1}&val2={R:2} and another one for redirection that matches search.aspx?val1=*&val2=* and redirects to /search/{R:1}/{R:2} could do the trick.
By the way, if in the URL Rewrite User Interface you use the User ...
-
Posted to
IIS7 - URL Rewrite Module
by
DanielVL
on
07-24-2009, 10:54 AM
It is a simple method, just copy an paste it.
-
Posted to
IIS7 - URL Rewrite Module
by
DanielVL
on
07-23-2009, 5:41 PM
According to .NET Reflector:public void set_Action(string value)
{
base.Attributes["action"] = HtmlControl.MapStringAttributeToString(value);
}
Where:
internal static string MapStringAttributeToString(string s)
{
if ((s != null) && (s.Length == 0))
{
return null;
}
return s;
}
No ...
-
Posted to
IIS7 - URL Rewrite Module
by
DanielVL
on
07-21-2009, 1:40 PM
1. Open a Command Prompt and execute:
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\InetStp\Rewrite /v MaxBackReferences /t REG_DWORD /d 10
2. Recycle the worker process.
The maximum value is 31.
Let me know if it doesn't work.