This is the most simple form of a web.config I use with IIS 7:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="MatchExistingFiles" stopProcessing="true">
<match url="^.*$" />
<conditions logicalGrouping="MatchAny">
<add input="{REQUEST_FILENAME}" matchType="IsFile"
pattern="" ignoreCase="false" />
<add input="{REQUEST_FILENAME}"
matchType="IsDirectory" pattern="" ignoreCase="false" />
</conditions>
<action type="None" />
</rule>
<rule name="RemapMVC" stopProcessing="true">
<match url="^.*$" />
<conditions logicalGrouping="MatchAll" />
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Perhaps someone should add this one or a better one to the manual.
Best regards
Stefan
-----Ursprüngliche Nachricht-----
Von: iceangel89 [mailto:[email protected]]
Gesendet: Samstag, 29. August 2009 15:11
An: [email protected]
Betreff: [fw-general] Provide web.config when creating projects in zend
tool?
since zend server supports iis, i suppose zend framework should "support"
that also. i think providing a web.config for iis users will be useful
--
View this message in context:
http://www.nabble.com/Provide-web.config-when-creating-projects-in-zend-tool
--tp25202794p25202794.html
Sent from the Zend Framework mailing list archive at Nabble.com.