aboutsummaryrefslogtreecommitdiffstats
path: root/core/routes.php
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2022-10-14 07:42:25 +0200
committerJulius Härtl <jus@bitgrid.net>2022-10-21 15:12:21 +0200
commit11bedf1c3bc65d70b5601ccfca7cdc3a57a46aa6 (patch)
tree0e628765755fb1318b61357f3f61a7b6869e6b4b /core/routes.php
parent7848d1cab6e0e3a6fb8cd15c4a8cba7147dabab9 (diff)
downloadnextcloud-server-11bedf1c3bc65d70b5601ccfca7cdc3a57a46aa6.tar.gz
nextcloud-server-11bedf1c3bc65d70b5601ccfca7cdc3a57a46aa6.zip
Use proper error pages instead of always redirecting
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/routes.php')
-rw-r--r--core/routes.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/routes.php b/core/routes.php
index 02e27c9cfaf..a3fdfafd7bf 100644
--- a/core/routes.php
+++ b/core/routes.php
@@ -97,6 +97,9 @@ $application->registerRoutes($this, [
['name' => 'WebAuthn#startAuthentication', 'url' => 'login/webauthn/start', 'verb' => 'POST'],
['name' => 'WebAuthn#finishAuthentication', 'url' => 'login/webauthn/finish', 'verb' => 'POST'],
+ ['name' => 'Error#error404', 'url' => 'error/404'],
+ ['name' => 'Error#error403', 'url' => 'error/403'],
+
// Well known requests https://tools.ietf.org/html/rfc5785
['name' => 'WellKnown#handle', 'url' => '.well-known/{service}'],