[TYPO3-english] IIS 8 rewrite rules

Jean-Pierre Defeyter jean-pierre at defeyter.net
Mon Aug 26 10:38:56 CEST 2013


Hi list,

After Upgrading windows server from 2003 to 2012 my site  i'snt reachable

Al pageges are compatly blank ( frontend en backend/install)

Is think this is a rewrite problem

See below my web.config file 

Anyone an idee what is wrong

My typo3 version is 4.6


<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
           <rules>
               <clear />
               <rule name="T3 Static Files Dirs" stopProcessing="true">
                   <match url="^/(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)$" />
               </rule>
               <rule name="T3 Static Files Dirs (Child requests)" stopProcessing="true">
                   <match url="^/(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)/.*$" />
               </rule>
               <rule name="Rewrite Rule Condition">
                   <match url="(.*)" />
                   <action type="Rewrite" url="index.php" />
                   <conditions>
                       <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                       <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                   </conditions>
               </rule>
           </rules>
       </rewrite>
    </system.webServer>
</configuration>



Jean-Pierre


More information about the TYPO3-english mailing list