Hello,
What I am trying to do is to redirect default .aspx to catalog.aspx?cid=38
The reson for doing so is that I want to the main page to be the page that holds featured products, so I have created a category with ID 38, and there you can find all the products that should be on the main page.
in order doing so, all I needed to do is to add one simple line in the web.config:
<rewrite url="~/default.aspx" to="~/Catalog.aspx?cid=38"/>
It works great! Problem begins when trying to login to admin page, there I recieve error:
Cannot use a leading .. to exit above the top directory.
What can I do abou it? What rewrite url regular expression do I need to solve this issue?
Thanks.