Go에서는 루트 디렉터리에서 정적 콘텐츠와 홈페이지를 모두 제공할 수 있습니다. 그러나 루트 URL에 두 방법을 모두 등록하면 충돌이 발생합니다.
이미지, CSS 등의 정적 콘텐츠를 제공하려면 http.Handle을 사용하고 http.Dir. 그러나 루트 URL에 대해 이렇게 하면 홈페이지 핸들러와 충돌하게 됩니다.
홈페이지를 서비스하려면 http.HandleFunc를 사용하고
충돌을 해결하려면 특정 루트 파일을 명시적으로 제공하는 것을 고려하십시오. 예를 들어 sitemap.xml, favicon.ico 및 robots.txt를 개별 파일로 제공할 수 있습니다.
package main import ( "fmt" "net/http" ) func HomeHandler(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "HomeHandler") } func serveSingle(pattern string, filename string) { http.HandleFunc(pattern, func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, filename) }) } func main() { http.HandleFunc("/", HomeHandler) // homepage // Mandatory root-based resources serveSingle("/sitemap.xml", "./sitemap.xml") serveSingle("/favicon.ico", "./favicon.ico") serveSingle("/robots.txt", "./robots.txt") // Normal resources http.Handle("/static", http.FileServer(http.Dir("./static/"))) http.ListenAndServe(":8080", nil) }
다른 모든 정적 리소스(예: CSS, JS)를 /static과 같은 하위 디렉터리로 복사합니다. 그런 다음 일반적으로 http.Handle 및 http.Dir을 사용하여 이 하위 디렉터리를 제공합니다.
위 내용은 Go의 루트 디렉터리에서 정적 콘텐츠와 홈페이지를 제공할 때 충돌을 피하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!