Hi
I have a DDR menu something like:
Home - Products - Services - About
I would like the Home link to go to the site root instead of showing home.aspx
I therefore added the following redirect to the web.config:
<rule name="Default Document to Root" stopProcessing="true">
<match url="(.*)(default.aspx|home$)" />
<action type="Redirect" url="{R:1}" redirectType="Permanent" />
</rule>
This works fine on first sight, but when logged in, the top Modules menu does not work - none of the drop-downs reload subsequent lists and the buttons do not work. Also, as expected really, the Sitemap still shows the home.aspx file.
I suppose I could redirect the site root to /home.aspx instead. Would doing this have any negative impact on SEO?
Many thanks in advance for any input.
Terry