, node_load Drupal path/ node. , , , / .. . , node_load , , Drupal , . node, , . , , /node.
However, I will offer this simple solution, since it seems that you want to get the same page that you get when you go to 'node / 123 / profile / id / 3', but will be accessible through a link that you define . You just need to configure the redirect in hook_menu like this:
$items['my/nice/url/profile'] = array(
'description' => 'This page holds a view that shows profiles based on the %',
'page callback' => 'drupal_goto',
'page arguments' => 'node/123/profile/id/3',
'access callback' => TRUE,
'type' => MENU_CALLBACK);
This, in essence, means that when you go to 'my / nicer / url / profile', it starts: drupal_goto ('node / 123 / profile / id / 3');
source
share