Fix links on Java Bazel Tutorial page.

--
MOS_MIGRATED_REVID=138974884
diff --git a/site/versions/master/docs/tutorial/java.md b/site/versions/master/docs/tutorial/java.md
index ce91666..83d2380 100644
--- a/site/versions/master/docs/tutorial/java.md
+++ b/site/versions/master/docs/tutorial/java.md
@@ -63,7 +63,7 @@
 `java_binary` is the type of thing this rule will build.
 `glob(["**/*.java"])` is a handy shorthand for "recursively include every file
 that ends with .java" (see the
-[build encyclopedia](be/functions.html#glob) for more information about
+[build encyclopedia](/docs/be/functions.html#glob) for more information about
 globbing). `com.example.ProjectRunner` specifies the class that contains the
 main method.
 
@@ -207,7 +207,7 @@
 Hi!
 {% endhighlight %}
 
-See the [build encyclopedia](be/common-definitions.html#common.visibility) for more
+See the [build encyclopedia](/docs/be/common-definitions.html#common.visibility) for more
 visibility options.
 
 ## Deploying