Drupal 6: Redirect Users to your Frontpage/Startpage/node after they logged in

In Drupal 6 this can be done with core modules like this:

  1. enable Trigger module
  2. add an action
  3. add advanced action at the bottom and choose “Redirect to URL”
  4. use description regardless of how you will use it but rather describing what this action does; e.g. “redirect to start node”
  5. as URL apply “node” (without the quotation marks). Instead of node you can redirect to any url you like. See my screenshot for how it could look.
  6. set-up the appropriate trigger
  7. from the drop-down list at “Trigger: After a user has logged in” select your new action from just now
  8. log out and back in again to test it

Note: In the links provided you need to change “your-domain-path-to-drupal” with your actual domain name to become something like http://example.com/admin. Or navigate as usual if you now where to find the settings pages in Drupal 6. If you happen to have clean urls disabled you might know already that you need to prefix the admin path (as every other path) by “?q=” so it all together looks like this: http://example.com/?q=admin. This, however, doesn’t concern the node parameter where you redirect to. That’s always an internal relative path without the leading slash; or some full url of corse.

Update 05/2009: If you want a simple module to do that for you useLogin Destination. To redirect user/1 to /admin and site users “back” to the page they logged in from the following PHP snippet should work for Drupal 6 (not tested, feedback welcome!):

global $user;
  if ($user->uid == 1) {
    // Redirect the Administrator
    return 'admin';
  } else {
    return ($_REQUEST['q']);
  }

Resources

33 Comments

  1. Andrei said,

    Tuesday, 20th Dec 2011 at 17:32

    Thanks for the post. The Login Destination module with the PHP snippet you provided worked for me.

  2. Tuesday, 23rd Aug 2011 at 08:26

    Que buena ayuda!!

  3. geoge said,

    Thursday, 28th Jul 2011 at 19:24

    8Y1Jq1 http://fnYwlOpd2n9t4Vx6A3lbk.com

  4. Monday, 2nd May 2011 at 07:21

    Thank you for the information! Nice blog.

  5. Tuesday, 1st Feb 2011 at 12:35

    Nice usage of the trigger module.
    Thank you.

  6. eddie said,

    Friday, 10th Sep 2010 at 00:12

    Hi, i have downloaded and installed drupal 6.19.
    the only module I enabled was Trigger
    followed your steps from 1 to 8, without any success.
    tested the same action with other triggers, but “redirect to URL” after user login does not work?

    any help would be appreciated. thanks

  7. Ajai said,

    Tuesday, 25th May 2010 at 21:34

    Thanks,. this was helpful

  8. Guy Roberts said,

    Tuesday, 13th Apr 2010 at 16:34

    That helped me, thanks.

  9. user said,

    Wednesday, 31st Mar 2010 at 11:53

    Simply works, perfect
    Thanks a lot )

  10. kurye said,

    Wednesday, 17th Mar 2010 at 13:16

    You have a very good description. you agree


Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.