I've been working on this for a few hours now. I am trying to place Codeigniter framework into a Windows Azure website. PHP works great however I can't seem to get this rewrite rule to work right. This is my web.config file.
<?xml version="1.0"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Rule" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
<add input="{URL}" pattern="^/favicon.ico$" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
When I upload the file to the Windows Azure website and run the page with the index.php it returns with a HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request At this point I am not sure what to do, do I need to do something with Windows Azure? I am coming from an Apache background, Windows IIS is new to me. Any information is helpful to me thank you.

web.configdoes not look like it's related to PHP or Codeigniter; I think it's part of the Azure server system, probably some kind of IIS configuration file. – Jared Farrish Jun 10 '12 at 13:04/footo/index.php/foo, which probably doesn't exist. Are you sure you don't want something likeindex.php?path={R:1}? – smarx Jun 10 '12 at 15:37domain.com/index.php/foo– Brandon Wilson Jun 10 '12 at 19:02