Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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}&amp;stad={R:2}" />
    </rule>

Why is this happening?

share|improve this question
The redirect is not the result of any of the above rules. So it must be caused by something else, possibly in your code or by another configuration setting. A note, but unrelated to this particular problem: the regular expression ending with ?/?$ 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

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.