From this URL http://www.toptrouwen.nl/trouwlocaties I'm trying to access this URL: http://www.toptrouwen.nl/trouwlocaties/zoeken-uitgebreid by clicking the link 'Uitgebreid zoeken' But when I click the link, I'm redirected back to http://www.toptrouwen.nl/trouwlocaties
Here are the rewrite rules in the exact order in my web.config, I even added stopProcessing="true" to prevent processing of the other rules once a match is found:
<rule name="advanced search locs" stopProcessing="true">
<match url="^trouwlocaties/zoeken-uitgebreid?/?$" />
<action type="Rewrite" url="locs_advancedsearch.aspx" />
</rule>
<rule name="trouwlocaties">
<match url="^trouwlocaties?/?$" />
<action type="Rewrite" url="search.aspx" />
</rule>
<rule name="trouwlocaties by city">
<match url="^trouwlocaties/([a-zA-Z-+]+)$" />
<action type="Rewrite" url="search.aspx?stad={R:1}" />
</rule>
<rule name="weddingvenues">
<match url="^weddingvenues?/?$" />
<action type="Rewrite" url="search.aspx" />
</rule>
<rule name="weddingvenues by city">
<match url="^weddingvenues/([a-zA-Z-+]+)$" />
<action type="Rewrite" url="search.aspx?stad={R:1}" />
</rule>
<rule name="location_category">
<match url="^([a-zA-Z0-9-+]+)$" />
<action type="Rewrite" url="search.aspx?category={R:1}" />
</rule>
<rule name="location_category+city">
<match url="^([a-zA-Z0-9-+]+)/([a-zA-Z0-9-+]+)$" />
<action type="Rewrite" url="search.aspx?category={R:1}&stad={R:2}" />
</rule>
Why is this happening?
?/?$are most likely wrong, it should be just/?$. If you need help in Dutch, contact me directly. – Marco Miltenburg Nov 16 '12 at 11:54