In Drupal 6 this can be done with core modules like this:
- enable Trigger module
- add an action
- add advanced action at the bottom and choose “Redirect to URL”
- use description regardless of how you will use it but rather describing what this action does; e.g. “redirect to start node”
- 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.
- set-up the appropriate trigger
- from the drop-down list at “Trigger: After a user has logged in” select your new action from just now
- 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
- HowTo trigger Emails when Comment has been posted
- for advanced redirects see Login Destination module or Token module









Dani said,
Wednesday, 7th Oct 2009 at 13:49
Thanks for the tip! Very useful!
mike said,
Monday, 4th May 2009 at 16:25
when users log out of my site, they see a white page, nothing else. im a newbee, but i thought by default they should be redirected to the front page??? i have tried to set a redirect action on user log out, but the redirect option comes up everwhere except in the log out trigger. any help would be appreciated.
sysblog said,
Monday, 4th May 2009 at 17:56
mike, that’s the “white screen of death” I’m afraid, saying there is something wrong with your installation of drupal. You might want to search for “white screen of death drupal log out” with your favorite search engine of choice. Good luck!
You said,
Friday, 1st May 2009 at 17:09
Is there a way to STOP redirection upon login?
With drupal 6.11, upon login users are directed away from their current page to the profile page. I liked the old behaviour of staying on the same page.
sysblog said,
Monday, 4th May 2009 at 18:00
Hey You.
Maybe this drupal support forum entry will help you. I found this page and others by searching google for “drupal 6.11 login redirection“
a_c_m said,
Thursday, 26th Mar 2009 at 16:30
Handy tip!
Thanks for sharing.
Asak said,
Friday, 27th Feb 2009 at 14:50
Would you happen to know how to use triggers/actions/rules to redirect after FIRST login only? I’m trying to figure this out…
Thanks!
sysblog said,
Friday, 27th Feb 2009 at 16:58
Asak, I would be surprised if this was possible with standart Drupal. But if you find out I would be happy if you’d share your solution with me and my readers!
Here are two threads for starters on drupal.org
Redirect On First-Time Login
mandatory redirection after first login only
sysblog said,
Sunday, 22nd Feb 2009 at 22:22
Great to hear I could be of help and thanks, size, for sharing your knowledge with everyone!
Have fun with Drupal!
size said,
Saturday, 21st Feb 2009 at 01:09
ok let me answer my own question…
1. Apply the trigger for when a user logs in and not when the user registers (as Gavin suggested it prevents the e-mail from being sent and in my case didn’t login the new user)
2. Set the to trigger point to http://whatsmysize.com/clothing/user/
Job done – time for bed
Thanks so much for posting this in the first place…
size said,
Saturday, 21st Feb 2009 at 00:31
Thanks so much this worked a treat (as I looked for about 3 hours before I found you I am delighted)
I am keen for a user who registers to redirect to their own profile page – as a newbie could anyone point me in the right direction ?