On 12/28/05, Rovi <[EMAIL PROTECTED]> wrote: > (1) I enter http://www.domain.com > (2) It immediately (without any click) changes to > http://www.domain.com/pub/live/index.html > (3) In view source: href="/pub/live/css/page.css"; <img alt="project logo" > src="/pub/live/images/project-logo.png" />; <div class="tab"><a > href="menuitem.html">menuitem</a></div> > (4) If I hover over menuitem, I see > http://www.domain.com/pub/live/menuitem.html > (5) In the address bar, I manually remove pub/live/ and press enter. The page > does not change. > (6) In View source: href="/pub/live/css/page.css"; <img alt="project logo" > src="/pub/live/images/project-logo.png" />; <div class="tab"><a > href="menuitem.html">menuitem</a></div> > (7) If I hover over menuitem, I see http://www.domain.com/menuitem.html > (8) If I click over menuitem, the next page is > http://www.domain.com/menuitem.html > (9) On the view source of this page: href="/pub/live/css/page.css"; ><img > alt="project logo" src="/pub/live/images/project-logo.png" />; <div > class="tab- > selected">menuitem</div>; div class="tab"><a > href="anothermenuitem.html">anothermenuitem</a></div> > (10) If I manually remove menuitem.html to make the url http://www.domain.com, > and press enter, it again goes back to > http://www.domain.com/pub/live/index.html
So the homepage redirects to "/pub/live/index.html", but everything else seems to work as desired. My guess is it is Lenya doing the redirect, not Apache httpd. What happens if you specify the page? http://www.domain.com/index.html If that works, check the match for "no page specified": FILE: {pub}/publication-sitemap.xmap <map:match pattern="**/"> <map:redirect-to uri="/{pub}/live/index.html"/> </map:match> CHANGE TO: <map:redirect-to uri="index.html"/> solprovider --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
