Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

ASP.net URL rewrite (IIS 7)

Options
  • 30-08-2010 9:38pm
    #1
    Registered Users Posts: 2,791 ✭✭✭


    Hi,

    I'm trying to implement pretty permalinks in wordpress which is running on a windows server.

    Using the following taken from here, I can get the inner pages working.
    <rewrite>
        <rules>
            <rule name="Main Rule" stopProcessing="true">
                <match url=".*" />
                <conditions logicalGrouping="MatchAll">
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                </conditions>
                <action type="Rewrite" url="index.php/{R:0}" />
            </rule>
        </rules>
    </rewrite>
    

    However, I have a static front page which should be excluded from this rewrite as it does not have a value passed into it as index.php

    How can I modify this expression to only match against domainname/PageName?

    Thanks
    John


Advertisement