Posted by rossoe on October 28, 2011 at 12:21am
5 followers
Jump to:
| Project: | BlueMasters |
| Version: | 7.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | gtsopour |
| Status: | active |
| Issue tags: | bluemasters, Bluemasters theme |
Issue Summary
I am using the footer blocks as per the live demo site - I have some links in the bottom blocks and they work fine when I am on the main front page but soon as I go to one of my Basic pages or Articles - the links in the footer seem to have an extra 'node' added to the url ! so instead of being www.sitename.co.uk/node/8 its www.sitename.co.uk/node/node/8 which just comes up with 'The requested page could not be found.'
What have I done wrong ?
Comments
#1
I've hit the problem too.
Creating a link something like:
node/9
Will result in that problem.
If you use this instead:
/drupal-7.9/node/9
Fixes it; at least it works for me now.
I don't know where the 'root' (pardon the pun) of the problem lies though.
#2
Hello rossoe
In which links are you referring exactly? Do you mean the menu-links on Menu blocks (About us, Categories) inside footer?
Thanks
/George
#3
If you're using:
<a href="node/1">Something</a>Try changing to:
<a href="./node/1">Something</a>This has always worked for my Drupal sites.