aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-04-11 21:21:58 +0200
committerThomas Lange <code@nerdmind.de>2017-04-11 21:21:58 +0200
commitb66d953dd1f757b43b93aafe115bf838e386811b (patch)
treed50eceee5b51af6af263ab3be8f19c68243b5f5d /index.php
parentfaee5e27d42e5db16a11cb78722bd4d033ca26d8 (diff)
downloadblog-b66d953dd1f757b43b93aafe115bf838e386811b.tar.gz
blog-b66d953dd1f757b43b93aafe115bf838e386811b.tar.xz
blog-b66d953dd1f757b43b93aafe115bf838e386811b.zip
All requests to "favicon.ico" will now be redirected to the current template directory "rsrc/favicon.ico" (if the "favicon.ico" inside the root directory does not exist).
Diffstat (limited to 'index.php')
-rw-r--r--index.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/index.php b/index.php
index 37dcce8..a96d423 100644
--- a/index.php
+++ b/index.php
@@ -83,6 +83,11 @@ Router::addRedirect('feed/(page|post)', Application::getURL('feed/$1/'));
Router::addRedirect('search', Application::getURL('search/'));
#===============================================================================
+# REDIRECT: Favicon
+#===============================================================================
+Router::addRedirect('favicon.ico', Application::getTemplateURL('rsrc/favicon.ico'));
+
+#===============================================================================
# Execute router and route requests
#===============================================================================
Router::execute(parse_url(HTTP::requestURI(), PHP_URL_PATH));