I have managed to get rewrites working, along the lines of domain.com/linkdetails.aspx?id=5 to domain.com/about/us etc.
Now, the problem is, google has indexed all the unfriendly urls. I already have this rewrite in place from the friendly url to the linkdetails.aspx?id= type format... how do I let google know that the friendly url should be the one indexed? Can I place a redirect from the linkdetails.aspx url to the friendly url? Will that work, or end in a loop? If anyone has any examples of how to match a redirect when using dynamic 'id's' that'd be really helpful!
Thanks for any help in advance.
Example:
Here is an example rule. The first makes the friendly URL work.. and I was hoping the second one would redirect the unfriendly to the friendly! First one works.. second one doesn't. Is what I'm trying possible? I just need to map around 30 urls by hand.. nothing too dynamic.
<rule name="Rewrite 28">
<match url="contact" />
<action type="Rewrite" url="Linkdetails.aspx?lnkid=21" />
</rule>
<rule name="Redirect 28">
<match url="Linkdetails.aspx?lnkid=21" />
<action type="Redirect" url="contact" />
</rule>
Edit:
I managed to get it working with this redirect -
<rule name="test redirect" stopProcessing="true">
<match url="Linkdetails\.aspx$" />
<conditions>
<add input="{QUERY_STRING}" pattern="lnkid=21" />
</conditions>
<action type="Redirect" url="contact" redirectType="Permanent" appendQueryString="false" />
But now it causes a fail, as there are too many redirects... as I gues it's looping between the two. How can I fix it? :/