Index: src/java/org/apache/nutch/searcher/FetchedSegments.java
===================================================================
--- src/java/org/apache/nutch/searcher/FetchedSegments.java	(revision 628628)
+++ src/java/org/apache/nutch/searcher/FetchedSegments.java	(working copy)
@@ -22,6 +22,7 @@
 import java.util.HashMap;
 import java.util.Iterator;
 
+import org.apache.commons.lang.StringUtils;
 import org.apache.hadoop.io.*;
 import org.apache.hadoop.fs.*;
 import org.apache.nutch.protocol.*;
@@ -218,7 +219,11 @@
   }
 
   private Text getUrl(HitDetails details) {
-    return new Text(details.getValue("url"));
+    String url = details.getValue("orig");
+    if (StringUtils.isBlank(url)) {
+      url = details.getValue("url");
+    }
+    return new Text(url);
   }
 
   public void close() throws IOException {

