concrete5 プリティURL用 Web.config

<rewirte>~</rewirte>の部分を手動で追加

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.web>
        <customErrors mode="Off"/>
        <!-- http://daruyanagi.jp/entry/2013/04/21/143904 -->
        <httpRuntime requestPathInvalidCharacters="&lt;,&gt;,*,%,&amp;,\,?" />
    </system.web>
    <system.webServer>
        <directoryBrowse enabled="false" />
        <defaultDocument>
            <files>
                <clear />
                <add value="Default.htm" />
                <add value="Default.html" />
                <add value="index.htm" />
                <add value="index.html" />
                <add value="index.php" />
                <add value="index.aspx" />
                <add value="Default.aspx" />
                <add value="index.py" />
                <add value="index.pl" />
            </files>
        </defaultDocument>
        <rewrite>
        <rules>
            <rule name="Concrete5" 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" />
                </conditions>
                <action type="Rewrite" url="index.php/{R:1}" />
            </rule>
        </rules>
        </rewrite>
    </system.webServer>
</configuration>