2

在服务器上,有两个 webapp、一个 wordpress 网站和一个位于子目录中的“独立”网站。

两个应用程序都需要重写 index.php,而对于 wordpress,这是自动完成的,但现在我还需要重写子目录中的另一个应用程序。

进一步澄清:

http://www.example.com/contact应该重定向到http://www.example.com/index.php/contact http://www.example.com/subfolder/contact应该重定向到http://www .example.com/subfolder/index.php/contact

这似乎是一件相当简单的事情,但我似乎无法弄清楚......

这是我现在拥有的 web.config,我该如何解决这个问题?

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <defaultDocument>
            <files>
                <clear/>
                <add value="index.php"/>
                <add value="Default.htm"/>
                <add value="Default.asp"/>
                <add value="index.htm"/>
                <add value="index.html"/>
                <add value="iisstart.htm"/>
                <add value="default.aspx"/>
            </files>
        </defaultDocument>
        <rewrite>
            <rules>
                <rule name="wordpress" patternSyntax="Wildcard">
                    <match url="*"/>
                    <conditions>
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
                    </conditions>
                    <action type="Rewrite" url="index.php"/>
                </rule>
                <rule name="standalone" stopProcessing="true">
                    <match url="^" ignoreCase="false" />
                    <conditions>
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="index.php/{R:1}" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>
4

0 回答 0