--- cacheexclude.module.old 2008-02-22 06:38:00.000000000 +1000 +++ cacheexclude.module 2008-06-21 15:10:00.000000000 +1000 @@ -38,7 +38,8 @@ function cacheexclude_init() { $pages = trim(variable_get('cacheexclude_list', '')); // If the current page is one we want to exclude from the cache, // set the page caching to false temporarily. - if (strlen($pages) && drupal_match_path($_GET['q'], $pages)) { + if (strlen($pages) && (drupal_match_path($_GET['q'], $pages) || + drupal_match_path(drupal_get_path_alias($_GET['q']), $pages) )) { $GLOBALS['conf']['cache'] = FALSE; } }