gobyexample/068-http-server-static-select.go
Mark McGranaghan 354a9d862f reorder
2012-09-21 07:54:20 -07:00

36 lines
952 B
Go

package main
import ("net/http"; "fmt"; "code.google.com/p/gorilla/mux")
func hello(res http.ResponseWriter, req *http.Request) {
res.Header().Set("Content-Type", "text/plain")
fmt.Fprintln(res, "Hello")
}
func static(res http.ResponseWriter, req *http.Request) {
http.ServeFile(res, req, "./01-hello.go")
}
func notFound(res http.ResponseWriter, req *http.Request) {
res.Header().Set("Content-Type", "text/plain")
res.WriteHeader(404)
fmt.Fprintln(res, "Not found: /" + mux.Vars(req)["path"])
}
func main() {
r := mux.NewRouter()
r.HandleFunc("/", hello)
r.HandleFunc("/01-hello.go", static)
r.HandleFunc("/{path:.*}", notFound)
http.ListenAndServe(":5000", r)
}
// == running
// $ go get code.google.com/p/gorilla/mux
// $ go run xx-http-server-static-select.go
//
// $ curl -i http://127.0.0.1:5000/
// $ curl -i http://127.0.0.1:5000/favicon.ico
// $ curl -i http://127.0.0.1:5000/wat
// $ curl -i http://127.0.0.1:5000/wat/wat