From 2fd844bd804e056763601e5652bcd7cd05717c92 Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Tue, 28 Jul 2015 12:27:34 -0400 Subject: [PATCH] path --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index fc1fabd..4195831 100644 --- a/main.go +++ b/main.go @@ -82,7 +82,7 @@ func main() { mux.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) { route := req.URL.Path if val, ok := routes[route]; ok { - writePageGo(w, req.Host+route, val, 200) + writePageGo(w, "pault.ag"+val.Path, val, 200) } else { writePageError(w, ":(", 404) }