devshort

private self-hosted shortlink service
git clone https://git.clttr.info/devshort.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit 733a747a1da08dbda12dd083c4e9f8bb8ea3cee3
parent 1566f28d042b730762ebce7cc7318b4d69458188
Author: Florian Kaldowski <flokX@users.noreply.github.com>
Date:   Thu,  4 Jul 2019 15:25:28 +0200

Serve robots.txt as file
Diffstat:
Mredirect.php | 10++--------
1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/redirect.php b/redirect.php @@ -3,15 +3,9 @@ // All relevant changes can be made in the data file. Please read the docs: https://github.com/flokX/devShort/wiki $short = htmlspecialchars($_GET["short"]); -$return_404 = array("favicon.ico", "assets/vendor/bootstrap/bootstrap.min.css.map", "assets/vendor/frappe-charts/frappe-charts.min.iife.js.map"); -// If the robots.txt is requested, return it -if ($short === "robots.txt") { - header("Content-Type: text/plain; charset=utf-8"); - echo "User-agent: *\n"; - echo "Disallow: /\n"; - exit; -} else if (in_array($short, $return_404)) { +$return_404 = array("favicon.ico", "assets/vendor/bootstrap/bootstrap.min.css.map", "assets/vendor/frappe-charts/frappe-charts.min.iife.js.map"); +if (in_array($short, $return_404)) { header("HTTP/1.1 404 Not Found"); exit; }