Redirects appear not to work if page caching is enabled. Clicking the redirect link takes one to an empty page.

Comments

Anonymous’s picture

I am having the same issue - subscribing

lavamind’s picture

I'm not sure if that's your case, but if you use the Boost caching module, CCK redirection won't work. You need to tell Boost not to cache nodes for which you have a redirection enabled. Under "Statically cache specific pages :", select "Cache pages for which the following PHP code returns TRUE (PHP-mode, experts only)." and paste the following code :

<?php
(empty($node->content['field_redirection'])) ? (return TRUE) : (return FALSE);
?>
Anonymous’s picture

we are using memcache on our sites, not Boost cache. I will check with the person that set up the memcache to see if this is also possible through that module.

thanks