<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.iis.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:cs="http://blogs.iis.net/"><channel><title>Search results matching tag '404'</title><link>http://forums.iis.net/search/SearchResults.aspx?o=DateDescending&amp;tag=404&amp;orTags=0</link><description>Search results matching tag '404'</description><dc:language>en-US</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>IIS7 replace my custom 404 error management</title><link>http://forums.iis.net/p/1162757/1925250.aspx#1925250</link><pubDate>Wed, 18 Nov 2009 14:11:52 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1925250</guid><dc:creator>foxontherock</dc:creator><cs:applicationKey>iis7_-_general--1</cs:applicationKey><description>In my asp.net application, I created a module to do some url rewriting.  IN this module, I also verify that all non valid call are executed by my err404.aspx page.  This page has only 2 lines of code: &lt;br /&gt;&lt;br /&gt;
Response.StatusCode = 404&lt;br /&gt;
Response.StatusDescription = &amp;quot;Not Found&amp;quot;
&lt;br /&gt;&lt;br /&gt;
I do not use the 404 redirection in my web.config, every 404 error is 100% managed by my module.
&lt;br /&gt;&lt;br /&gt;
This is how I manage my 404 in my httpmodule
&lt;br /&gt;&lt;br /&gt;
app.Context.RewritePath(p.ResolveUrl(&amp;quot;~/err404.aspx&amp;quot;), False)
&lt;br /&gt;&lt;br /&gt;
But now I have 1 big trouble. If I open an invalid page on my local iis, using http://localhost/myapp/potato.gif that do not exist, I see my err404 executed.  If that url is called remotely (http://mycomputer/myapp/potato.gif), it seems that IIS capture that the err404 executed returns an err404 code, and it replace my 404 page with its own.
&lt;br /&gt;&lt;br /&gt;
I removed the default 404 error managing in IIS at the root of my site, and after that it does not replace my page by its own, it only eliminates my page and the browser shows a 404 error message generated by the browser.  
&lt;br /&gt;&lt;br /&gt;
How do I tell IIS to do nothing when it detects a status code 404?  And why is it doing this only from remote calls, not local calls?</description></item><item><title>Rule to catch swf files returns 404 file not found.</title><link>http://forums.iis.net/p/1162595/1924567.aspx#1924567</link><pubDate>Fri, 13 Nov 2009 01:20:13 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1924567</guid><dc:creator>surrealis</dc:creator><cs:applicationKey>iis7_-_url_rewrite_module-41</cs:applicationKey><description>&lt;p&gt;I have the following rule in my web.config &lt;/p&gt;
&lt;p&gt;&amp;lt;RULE stopProcessing=&amp;quot;true&amp;quot; name=&amp;quot;Lesson Testing&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;MATCH url=&amp;quot;(.+)/lesson/(.+).swf$&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;ACTION type=&amp;quot;Rewrite&amp;quot; url=&amp;quot;/handleSWF.aspx?lookingfor={R:0}&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;/ACTION&amp;gt;&lt;br /&gt;&amp;lt;/RULE&amp;gt;&lt;/p&gt;
&lt;p&gt;When i attempt to access anything like &amp;quot;&lt;a href="http://www.[myurl].com/lesson/lesson.swf"&gt;http://www.[myurl].com/lesson/lesson.swf&lt;/a&gt;&amp;quot; i get a 404 file not found error? &lt;/p&gt;
&lt;div id="details-left"&gt;
&lt;table cellspacing="0" cellpadding="0"&gt;

&lt;tr class="alt"&gt;
&lt;th&gt;Module&lt;/th&gt;
&lt;td&gt;IIS Web Core&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;Notification&lt;/th&gt;
&lt;td&gt;MapRequestHandler&lt;/td&gt;&lt;/tr&gt;
&lt;tr class="alt"&gt;
&lt;th&gt;Handler&lt;/th&gt;
&lt;td&gt;StaticFile&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;Error Code&lt;/th&gt;
&lt;td&gt;0x80070002&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;
&lt;div id="details-right"&gt;
&lt;table cellspacing="0" cellpadding="0"&gt;

&lt;tr class="alt"&gt;
&lt;th&gt;Requested URL&lt;/th&gt;
&lt;td&gt;&lt;a href="http://www.[url]/lesson/lesson.swf"&gt;http://www.[url]:80/lesson/lesson.swf&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;Physical Path&lt;/th&gt;
&lt;td&gt;E:\web\[url]\htdocs\lesson\lesson.swf&lt;/td&gt;&lt;/tr&gt;
&lt;tr class="alt"&gt;
&lt;th&gt;Logon Method&lt;/th&gt;
&lt;td&gt;Anonymous&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;Logon User&lt;/th&gt;
&lt;td&gt;Anonymous&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.[myurl].com/handleSWF.aspx"&gt;http://www.[myurl].com/handleSWF.aspx&lt;/a&gt; exists, and it works when i access &lt;a href="http://www.[myurl].com/handleSWF.aspx?lookingfor=http://www.[myurl].com/lesson/lesson.swf"&gt;http://www.[myurl].com/handleSWF.aspx?lookingfor=http://www.[myurl].com/lesson/lesson.swf&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The page does what it is suppose to. I have to rewrite jpg&amp;#39;s, gif&amp;#39;s, txt&amp;#39;s and a bunch on internal file name extension&amp;nbsp;in a whole range of directory depths all of which will have &amp;quot;/lesson/&amp;quot; in them. &lt;/p&gt;
&lt;p&gt;I do have two other rules which work fine. example: &lt;br /&gt;&amp;lt;RULE name=&amp;quot;Art&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;MATCH url=&amp;quot;^art/(.*)/(.*)/(.*).html&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;ACTION type=&amp;quot;Rewrite&amp;quot; url=&amp;quot;/ArtistDetail.aspx?name={R:1}&amp;amp;amp;id={R:3}&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;/ACTION&amp;gt;&lt;br /&gt;&amp;lt;/RULE&amp;gt;&lt;/p&gt;
&lt;p&gt;this works like a charm so i don&amp;#39;t quite know what i&amp;#39;m doing wrong here. What am i missing? &lt;/p&gt;
&lt;p&gt;Thanks ahead of time,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;-Stephen&lt;/p&gt;</description></item><item><title>Extensionless Files and IIS7</title><link>http://forums.iis.net/p/1162572/1924435.aspx#1924435</link><pubDate>Thu, 12 Nov 2009 10:17:46 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1924435</guid><dc:creator>Xipher</dc:creator><cs:applicationKey>iis7_-_general--1</cs:applicationKey><description>&lt;p&gt;&amp;nbsp;Hello,&lt;/p&gt;&lt;p&gt;&amp;nbsp;How can I get IIS7 to serve up extensionless files? Right now all I get is a 404 page unless I put an extension on the files I need, but that&amp;#39;s not gonna happen for the sheer volume of them and how the software works that uses them.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Can I make this app in IIS?</title><link>http://forums.iis.net/p/1162561/1924358.aspx#1924358</link><pubDate>Wed, 11 Nov 2009 22:14:42 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1924358</guid><dc:creator>ikke_ook</dc:creator><cs:applicationKey>iis7_-_general--1</cs:applicationKey><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m thinking of making a web application using VS2008 but I don&amp;#39;t know if it is possible to configure IIS to make it work. Suppose I have the contoso.com domain, the app needs to do the following:&lt;/p&gt;
&lt;p&gt;&amp;nbsp; if a user navigates to &lt;a href="http://www.bob.contoso.com/"&gt;www.bob.contoso.com&lt;/a&gt;, the page displays: &amp;quot;Hello Bob&amp;quot;.&amp;nbsp; I don&amp;#39;t know the user&amp;#39;s name in advance and the pageaddress should remain as it was typed.&lt;/p&gt;
&lt;p&gt;Any ideas?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Thanks a lot.&lt;/p&gt;</description></item><item><title>Compression of 404 error text</title><link>http://forums.iis.net/p/1162353/1923450.aspx#1923450</link><pubDate>Thu, 05 Nov 2009 04:21:06 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1923450</guid><dc:creator>SQLRocks</dc:creator><cs:applicationKey>iis7_-_configuration__scripting-41</cs:applicationKey><description>&lt;p&gt;I was looking at the compression of content returned from my IIS7 websites and compressions is generally working well EXCEPT for the case of detailed error messages, such as 404 errors. &lt;/p&gt;
&lt;p&gt;The 404 errors have a content-type of &amp;quot;text/html; charset=utf-8&amp;quot;, which is different than most of the content returned by my asp and asp.net pages (&amp;quot;text/html&amp;quot;). &lt;/p&gt;
&lt;p&gt;&amp;nbsp;It seemed it might be just as easy as adding another MIMEtype to account for the utf-8 charset, but alas that doesn&amp;#39;t seem to be doing it for me. Any ideas of what I need to do to get 404 errors to be sent back compressed? &lt;/p&gt;
&lt;p&gt;Here are the current compression settings I have which are working great for everything except the 404 errors: &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;httpCompression directory=&amp;quot;%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;scheme name=&amp;quot;gzip&amp;quot; dll=&amp;quot;%Windir%\system32\inetsrv\gzip.dll&amp;quot; dynamicCompressionLevel=&amp;quot;6&amp;quot; staticCompressionLevel=&amp;quot;9&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;dynamicTypes&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;add mimeType=&amp;quot;text/*&amp;quot; enabled=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;add mimeType=&amp;quot;text/html; charset=utf-8&amp;quot; enabled=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;add mimeType=&amp;quot;message/*&amp;quot; enabled=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;add mimeType=&amp;quot;application/x-javascript&amp;quot; enabled=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;add mimeType=&amp;quot;*/*&amp;quot; enabled=&amp;quot;false&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/dynamicTypes&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;staticTypes&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;add mimeType=&amp;quot;text/*&amp;quot; enabled=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;add mimeType=&amp;quot;text/html; charset=utf-8&amp;quot; enabled=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;add mimeType=&amp;quot;message/*&amp;quot; enabled=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;add mimeType=&amp;quot;application/javascript&amp;quot; enabled=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;add mimeType=&amp;quot;*/*&amp;quot; enabled=&amp;quot;false&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/staticTypes&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/httpCompression&amp;gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Thanks, Phil&lt;/p&gt;</description></item><item><title>Head wrecker: 2 Identical servers with 2 websites BUT </title><link>http://forums.iis.net/p/1162337/1923371.aspx#1923371</link><pubDate>Wed, 04 Nov 2009 15:39:29 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1923371</guid><dc:creator>theh1982</dc:creator><cs:applicationKey>setup__migration--1</cs:applicationKey><description>&lt;p&gt;Hi Guys,&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am doing a migration to two new servers and I am having&amp;nbsp; a very strange problem.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Server 1 and Server 2 both host multiple websites and use an web drive which is an EMC storage (both windows see them as normal drives)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Server 1:&lt;/p&gt;&lt;p&gt;Website-A works&lt;/p&gt;&lt;p&gt;Website-B Does not work (error 404)&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Server 2:&amp;nbsp;&lt;/p&gt;&lt;p&gt;Website-A does not work (error 404)&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Website-B Works &lt;/p&gt;&lt;p&gt;&amp;nbsp;They are both IIS6 servers with ASP webpages on there and i set the permissions to everybody full control + network services full control and I enabled server side extensions like .asp etc etc the same. I also verified all the config and it is the same.&lt;/p&gt;&lt;p&gt;&amp;nbsp;Please help...&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Some forms error 404... others no (POST)</title><link>http://forums.iis.net/p/1162165/1922626.aspx#1922626</link><pubDate>Thu, 29 Oct 2009 09:13:49 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1922626</guid><dc:creator>lestatminiyo</dc:creator><cs:applicationKey>php_community-49</cs:applicationKey><description>I have IIS 6 with php and mssql server.


I have 3 forms with POST method
1. works perfectly
2. Error 404.

One of this forms, its a simple html form.

why?</description></item><item><title>Can not create directory with code Help ME!!</title><link>http://forums.iis.net/p/1161993/1921739.aspx#1921739</link><pubDate>Thu, 22 Oct 2009 15:20:35 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1921739</guid><dc:creator>I_Hate_This_Name</dc:creator><cs:applicationKey>general--1</cs:applicationKey><description>&lt;p&gt;Im have a web app being served up from my computer. Im running VB SSL. everything is just dandy:)&amp;nbsp; The only issue Im having is that My code will not write to my File system or create a new directory from a client computer. the code will run just fine on my machine but when its&amp;nbsp;called&amp;nbsp;from an outside machine&amp;nbsp;I get the 404 error message. I know it is a simple secerity issue, somthing to do with authentication. Now there is no log in going on here. The user simply clicks a button and the code behind writes some text to a file.Simple. the following type code will generate the error&lt;/p&gt;
&lt;p&gt;My.Computer.FileSystem.CreateDirectory(&amp;quot;DirName&amp;quot;) or MkDir(&amp;quot;DirName&amp;quot;)&lt;/p&gt;
&lt;p&gt;&amp;nbsp; Basically The code will not write to my directory without some kind of permmision. How do I give this site the permision it needs.&lt;/p&gt;
&lt;p&gt;If you could help me with this I could not thank you enough.&lt;/p&gt;</description></item><item><title>IIS 7.0 URL Rewrite and SharePoint 2007</title><link>http://forums.iis.net/p/1160726/1916152.aspx#1916152</link><pubDate>Tue, 08 Sep 2009 14:30:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1916152</guid><dc:creator>Robyn_Hutton</dc:creator><cs:applicationKey>iis7_-_url_rewrite_module-41</cs:applicationKey><description>&lt;p&gt;I was wondering if anyone has had any experience (and hopefully some success) using the IIS 7.0 URL Rewrite module with SharePoint 2007.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;My fear is that SharePoint is not going to allow the IIS 7.0 URL Rewrite module to handle redirects.&lt;/p&gt;
&lt;p&gt;I added a URL Rewrite wildcard rule against my SharePoint development environment, but it is as if the rule is being ignored completely and I am getting the standard SharePoint &lt;strong&gt;404 NOT FOUND&lt;/strong&gt; error.&lt;/p&gt;
&lt;p&gt;Is there anybody who has had success using these two technologies together?&lt;/p&gt;</description></item><item><title>Server Error in '/' Application - The resource cannot be found.</title><link>http://forums.iis.net/p/1160687/1916039.aspx#1916039</link><pubDate>Mon, 07 Sep 2009 09:57:47 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1916039</guid><dc:creator>simonalexander2005</dc:creator><cs:applicationKey>troubleshooting--1</cs:applicationKey><description>&lt;p&gt;&amp;nbsp;Hey Guys,&lt;/p&gt;&lt;p&gt;&amp;nbsp;I know this is a really common error, and you must be bored of troubleshooting it by now! But here&amp;#39;s the situation I have:&lt;/p&gt;&lt;p&gt;&amp;nbsp;I created an &amp;quot;Asp.Net Web application&amp;quot; for .Net 2.0 using visual studio 2008. I then set up IIS on my local machine (XP SP2), and it runs the website fine.&lt;/p&gt;&lt;p&gt;&amp;nbsp;Once I copy the files over to a folder on another machine (running windows server 2003), and set it up with identical settings, I get the error:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;lt;-------&lt;/p&gt;&lt;p&gt;The resource cannot be found.
         body {font-family:&amp;quot;Verdana&amp;quot;;font-weight:normal;font-size: .7em;color:black;} 
         p {font-family:&amp;quot;Verdana&amp;quot;;font-weight:normal;color:black;margin-top: -5px}
         b {font-family:&amp;quot;Verdana&amp;quot;;font-weight:bold;color:black;margin-top: -5px}
         H1 { font-family:&amp;quot;Verdana&amp;quot;;font-weight:normal;font-size:18pt;color:red }
         H2 { font-family:&amp;quot;Verdana&amp;quot;;font-weight:normal;font-size:14pt;color:maroon }
         pre {font-family:&amp;quot;Lucida Console&amp;quot;;font-size: .9em}
         .marker {font-weight: bold; color: black;text-decoration: none;}
         .version {color: gray;}
         .error {margin-bottom: 10px;}
         .expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
        &lt;span&gt;
&lt;h1&gt;Server Error in &amp;#39;/&amp;#39; Application.
&lt;hr /&gt;
&lt;/h1&gt;
&lt;h2&gt;&lt;i&gt;The resource cannot be found.&lt;/i&gt; &lt;/h2&gt;&lt;/span&gt;&lt;font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif "&gt;&lt;b&gt;Description: 
&lt;/b&gt;HTTP 404. The resource you are looking for (or one of its dependencies) 
could have been removed, had its name changed, or is temporarily unavailable. 
&amp;nbsp;Please review the following URL and make sure that it is spelled correctly. 
&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Requested URL: &lt;/b&gt;/Home.aspx&lt;br /&gt;&lt;br /&gt;
&lt;hr /&gt;
&lt;b&gt;Version Information:&lt;/b&gt;&amp;nbsp;Microsoft .NET Framework Version:2.0.50727.1433; 
ASP.NET Version:2.0.50727.1433 &lt;/font&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;------&amp;gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;The strange thing is, Default.aspx is my home page, which sets some variables, then redirects to Home.aspx (using&amp;nbsp; Response.Redirect(&amp;quot;~/Home.aspx&amp;quot;);) without displaying anything to the user. This implies that IIS is finding Default.aspx, then failing to use the redirect.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have tried other solutions I have come across on the internet, including checking for a trailing / in the local path setting, and ensuring web extensions are enabled.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The log file shows this:&lt;/p&gt;&lt;p&gt;&amp;lt;-------&lt;/p&gt;&lt;p&gt;&amp;nbsp;#Software: Microsoft Internet Information Services 6.0&lt;br /&gt;#Version: 1.0&lt;br /&gt;#Date: 2009-09-07 09:43:18&lt;br /&gt;#Fields: date time s-sitename s-computername s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs-version cs(User-Agent) cs(Cookie) cs(Referer) cs-host sc-status sc-substatus sc-win32-status sc-bytes cs-bytes time-taken &lt;br /&gt;2009-09-07 09:43:18 W3SVC632226371 NSL111 127.0.0.1 &lt;span style="font-weight:bold;"&gt;GET /Home.aspx&lt;/span&gt; - 80 - 127.0.0.1 HTTP/1.1 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.04506.648;+.NET+CLR+3.5.21022) ASP.NET_SessionId=j3whkn45bkiowu45zxfmnguz - localhost &lt;span style="font-weight:bold;"&gt;404 0 0 3694 351 15&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;2009-09-07 09:43:21 W3SVC632226371 NSL111 127.0.0.1 &lt;span style="font-weight:bold;"&gt;GET /Default.aspx&lt;/span&gt; - 80 - 127.0.0.1 HTTP/1.1 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.04506.648;+.NET+CLR+3.5.21022) ASP.NET_SessionId=j3whkn45bkiowu45zxfmnguz - localhost &lt;span style="font-weight:bold;"&gt;302 0 0 372 588 0&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;2009-09-07 09:43:21 W3SVC632226371 NSL111 127.0.0.1 &lt;span style="font-weight:bold;"&gt;GET /Home.aspx&lt;/span&gt; - 80 - 127.0.0.1 HTTP/1.1 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.04506.648;+.NET+CLR+3.5.21022) ASP.NET_SessionId=j3whkn45bkiowu45zxfmnguz - localhost&lt;span style="font-weight:bold;"&gt; 404 0 0 3694 597 0&lt;/span&gt;&lt;br /&gt;-------&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;Which implies to me that it finds Default.aspx successfully (code 302), but not /Home.aspx (404)&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Any thoughts?&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Cheers,&lt;/p&gt;&lt;p&gt;Simon&lt;/p&gt;&lt;p&gt;&amp;lt;&amp;gt;&amp;lt;~~&amp;gt;&amp;lt;&amp;gt; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;(note: &amp;lt;------- and -------&amp;gt; show the start and end of copied text, for clarity) &lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>