From aceca2ebcfe902b251eb8add7eb20fa70d483401 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Schplurtz=20le=20D=C3=A9boulonn=C3=A9?= Date: Mon, 1 Jun 2020 08:00:43 +0200 Subject: [PATCH] honor userewrite setting in redirection from index.php --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index bfb4c0b6a..447ea1618 100644 --- a/index.php +++ b/index.php @@ -17,7 +17,7 @@ if(php_sapi_name() != 'cli-server') { if(!defined('DOKU_INC')) define('DOKU_INC', dirname(__FILE__).'/'); require_once(DOKU_INC.'inc/init.php'); - send_redirect(DOKU_URL.'doku.php'); + send_redirect(wl($conf['start'])); } # ROUTER starts below