I have two sites:
http://blog.site.com
and http://www.site.com
Both sites are on different servers and different IP addresses (different hosting providers).
I would like to create rule which helps to rewrite the page
The URL will look like
http://www.site.com/logs/current_pages/
to the site visitor but it will really hit
http://blog.site.com/logs/current_pages/
Is it possible?
Please check this, it is not working
<rule name="cname domain">
<match url="/logs/(.+)" />
<action type="Rewrite" url="http://blog.site.com{R:0}" appendQueryString="false" />
</rule>