It seems like /admin currently defaults to showing /admin/logs. I was wondering if I could change it to /control_panel for example. I tried overriding it with a path alias, but that really screwed some things up. How would you recommend I have /admin redirect to /control_panel?

Thanks,
Frank

Comments

tag-1’s picture

Just thinking out loud (in other words, I haven't tried this) but you might be able to just use a RewriteRule or RedirectMatch in .htaccess:

RewriteRule ^admin$ control_panel [R]

or something like that. May vary depending on RewriteBase and such. I don't know of any clean way to override it in drupal itself if aliasing isn't working like you said (you can of course edit module code... but that's not so clean).