I'm wondering if this is normal behavior or not for the module, but on one of of my sites, networkarchitecturelab.org, the front page module redirects networkarchitecturelab.org to networkarchitecturelab.org/front. Now this is the page I want anon users to be redirected to, BUT I don't want the /front to appear. On varnelis.net, for example this doesn't happen. The only difference that I can tell between the sites is that networkarchitecturelab has a different front page set up for authenticated users.

I'm not sure why this is happening. Any thoughts?

Comments

Dublin Drupaller’s picture

Status: Active » Closed (fixed)

Now this is the page I want anon users to be redirected to, BUT I don't want the /front to appear

you could try usig the load_node function to pll in the front node content you're redirecting to...e.g. instead of redirecting, use something like the following:

$putout = node_load(array("nid" => 1)); // change the node id from '1' to suit
print $putout;