Change Default page
#3058
-
Hello. I love yourls after installing it everything work fine. How ever if I go to the site go.domain.com I get a 403 error! I would like to redirect it to my main website. Is it possible ? Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
dgw
Sep 11, 2021
Replies: 1 comment 1 reply
-
Very simple <?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: https://your.main.site/"); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ozh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very simple
index.php
will do it assuming your HTTP server is set up to treat such a file as the directory index (likeindex.html
is by default).