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>