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

I am creating this web.config wich has two rules:

One for this: www.domain.com/var-one wich sends www.domain.com/index.php?a=var-one

Another for this: www.domain.com/var-one/var-two/ wich sends www.domain.com/index.php?a=var-one&b=var-two

This is my code:

<rule name="Imported Rule 1">
    <match url="^([a-zA-Z0-9_-]+)$" ignoreCase="false" />
    <action type="Rewrite" url="/index.php?a={R:1}" appendQueryString="false" />                    
</rule>

<rule name="Imported Rule 2">
    <match url="^([a-zA-Z0-9_-]+)/$" ignoreCase="false" />
    <action type="Rewrite" url="/index.php?a={R:1}" appendQueryString="false" />
</rule>

<rule name="Imported Rule 3">
    <match url="^([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)$" ignoreCase="false" />
    RETURNS ERROR IN THIS LINE ---><action type="Rewrite" url="index.php?a={R:1}&b={R:2}" appendQueryString="false" />                  
</rule>

<rule name="Imported Rule 4">
    <match url="^([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/$" ignoreCase="false" />
    <action type="Rewrite" url="/index.php?a={R:1}&b={R:2}" appendQueryString="false" />
</rule>
share|improve this question
What is your question? – DOK Jan 30 at 13:58

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.