Is there anyway to determine on Page Load if the URL is the Original or the Rewritten one? I've played with several of the Request.URL properties but nothing seems to determine which URL is being used.
It looks like the Search Engines are using my original URL's (when they spider me) and I would like a way for my pages to do a 301 Redirect if the original URL is used.
something like
If (orignal URL) then
Response.Status = "301 Moved Permanently"
Response.AddHeader(
"Location", "http://A_Re_Written_URL")
End If
Thank you.