I have a url alias for a page of:
Subject1/DetailPage1
I have many of these, something like:
Subject1/DetailPage1
Subject1/DetailPage2
Subject1/DetailPage3
..
Subject1/DetailPage35
I have other, equal levels, with similar structures
Subject2/DetailPage1
Subject2/DetailPage2
Subject2/DetailPage3
..
Subject2/DetailPage17
I want to put a link on one of the pages in Subject1 which links to Subject2/DetailPage3
If I code the link as: <a href="Subject2/DetailPage3">Test</a>
then Drupal shows my link at the bottom of the page, when I hover over it, as http://www.mydomain.com/rewritebase/
Subject1/Subject2/DetailPage3
Note the addition of the "Subject1" reference where it is not desirable. The rewritebase is just fine. That is, the link that would work would be http://www.mydomain.com/rewritebase/Subject2/DetailPage3
I've tried setting my link as <a href="/Subject2/DetailPage3">Test</a>
(note the addition of the slash at the beginning of the reference) but that link shows up at the bottom of the page without my rewrite base as: http://www.mydomain.com/Subject2/DetailPage3
, so this won't get me where I'm trying to go, either.
This seems like a but to me, in that I have coded my link as "Subject2/DetailPage3" on a page that has an alias of "Subject1/DetailPage10" and I would never expect "Subject1" to find its way into the final link.