blob: cc2a3061fd4fc9f5cd3611d7779f0d9136a7eee7 (
plain)
1
2
3
4
5
6
7
8
9
|
<?php
//var_dump($_SERVER);die();
if (isset($_SERVER["HTTP_REFERER"]) && strpos($_SERVER["HTTP_REFERER"], "fl4-network-proxy.alwaysdata.net") !== false) {
header("Location: https://familine.jetbrains.space/oauth/auth?response_type=token&client_id=b73d6873-fb22-4794-ad79-585a7280a066&redirect_uri=https://fl4-network-proxy.alwaysdata.net/oauth&scope=Profile:ViewProfile");
} else {
header("Location: https://familine.jetbrains.space/oauth/auth?response_type=token&client_id=b73d6873-fb22-4794-ad79-585a7280a066&redirect_uri=https://famishare.ddns.net/oauth&scope=Profile:ViewProfile");
}
|