Active
Project:
BlueMasters
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Issue tags:
Reporter:
Created:
28 Oct 2011 at 00:21 UTC
Updated:
5 Apr 2012 at 01:49 UTC
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
Comment #1
Drakken_Mordith commentedI'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.
Comment #2
gtsopour commentedHello rossoe
In which links are you referring exactly? Do you mean the menu-links on Menu blocks (About us, Categories) inside footer?
Thanks
/George
Comment #3
Homotechsual commentedIf 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.