fix (plg_security_scanner): prevent issue with plg_handler_site

This commit is contained in:
MickaelK 2025-09-12 12:49:43 +10:00
parent a2c6d554fd
commit cd40cbe479

View file

@ -52,7 +52,6 @@ func init() {
// DEFAULT // DEFAULT
r.HandleFunc("/index.php", WelcomePackHandle) r.HandleFunc("/index.php", WelcomePackHandle)
r.PathPrefix("/html/").Handler(http.HandlerFunc(WelcomePackHandle)) r.PathPrefix("/html/").Handler(http.HandlerFunc(WelcomePackHandle))
r.PathPrefix("/public/").Handler(http.HandlerFunc(WelcomePackHandle))
r.PathPrefix("/webdav/").Handler(http.HandlerFunc(WelcomePackHandle)) r.PathPrefix("/webdav/").Handler(http.HandlerFunc(WelcomePackHandle))
r.PathPrefix("/www/").Handler(http.HandlerFunc(WelcomePackHandle)) r.PathPrefix("/www/").Handler(http.HandlerFunc(WelcomePackHandle))
r.PathPrefix("/MAMP/").Handler(http.HandlerFunc(WelcomePackHandle)) r.PathPrefix("/MAMP/").Handler(http.HandlerFunc(WelcomePackHandle))