Extends: HttpRouter < Reference
Class inheriting HttpRouter for handling file serving requests
var path: String = ""
Full path to the folder which will be exposed to web
var fallback_page: String = ""
Full path to the fallback page which will be served if the requested file was not found
var extensions: PoolStringArray
An ordered list of extensions that will be checked if no file extension is provided by the request
var exclude_extensions: PoolStringArray
A list of extensions that will be excluded if requested
func _init(path: String, options: Dictionary) -> void
func handle_get(request: HttpRequest, response: HttpResponse) -> void
Handle a GET request