diff --git a/content/spam_content_comment.inc b/content/spam_content_comment.inc
index e807018..a6c14ef 100644
--- a/content/spam_content_comment.inc
+++ b/content/spam_content_comment.inc
@@ -165,7 +165,7 @@ function comment_spamapi($op, $arg1 = NULL, $arg2 = NULL, $arg3 = NULL) {
 
     case 'redirect':
       $nid = db_result(db_query('SELECT nid FROM {comments} WHERE cid = %d', $arg1));
-      return drupal_goto("/node/$nid", NULL, "comment-$arg1");
+      return drupal_goto("node/$nid", NULL, "comment-$arg1");
 
     case 'overview_filter_join':
       return 'INNER JOIN {comments} c ON t.content_id = c.cid';
diff --git a/content/spam_content_node.inc b/content/spam_content_node.inc
index c1dc5c9..0d2eb5a 100644
--- a/content/spam_content_node.inc
+++ b/content/spam_content_node.inc
@@ -140,7 +140,7 @@ function node_spamapi($op, $arg1 = NULL, $arg2 = NULL, $arg3 = NULL) {
       break;
 
     case 'redirect':
-      return drupal_goto("/node/$arg1");
+      return drupal_goto("node/$arg1");
 
     case 'overview_filter_join':
       return 'INNER JOIN {node} n ON t.content_id = n.nid';
