使用 Go Web 伺服器來託管靜態 HTML 檔案
提供靜態 HTML 檔案是 Web 開發的一個基本面向。在 Go 中,使用 net/http 套件可以輕鬆完成此任務。具體操作方法如下:
在您的程式碼中:
package main import ( "net/http" ) func main() { // Specify the folder containing the static HTML files staticDir := "./static" // Serve static files using the built-in FileServer handler http.Handle("/", http.FileServer(http.Dir(staticDir))) // Start listening for HTTP requests on port 3000 http.ListenAndServe(":3000", nil) }
此程式碼安裝一個檔案伺服器,該伺服器從根 URL (/) 處的指定 staticDir 提供檔案服務。
從不同的 URL 提供檔案
如果您想提供靜態檔案對於根以外的 URL,您可以使用 http.StripPrefix 函數。例如,要從 /static URL 提供檔案:
staticDir := "./public" http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir(staticDir))))
此程式碼將使 ./public 目錄中的檔案可在 localhost:3000/static 存取。
透過託管靜態 HTML使用此方法,您可以輕鬆地在 Go 程式之外修改 HTML,從而輕鬆維護和更新您的 Web 內容。
以上是如何使用 Go Web 伺服器提供靜態 HTML 檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!