- Фев
- 16
- 4
Только чтение
Когда ты переходишь например по этой ссылке https://api.arz-swag.tech/redirect?siteUrl то перенаправляет на другую страницу. Как сделать так же?
By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!Когда ты переходишь например по этой ссылке https://api.arz-swag.tech/redirect?siteUrl то перенаправляет на другую страницу. Как сделать так же?
Сарказм братишкаЧто ты несёшь?мне вообще для других целей
<?php
$redirects = [
'siteUrl' => 'https://example.com',
'forumUrl' => 'https://forum.example.com',
'discordUrl' => 'https://discord.gg/example',
'youtubeUrl' => 'https://youtube.com/example',
'instagramUrl' => 'https://instagram.com/example',
'telegramUrl' => 'https://t.me/example',
'vkontakteUrl' => 'https://vk.com/example',
'reportUrl' => 'https://example.com/report',
];
foreach ($redirects as $param => $url) {
if (isset($_GET[$param])) {
header("Location: " . $url);
exit();
}
}
header("Location: /");
exit();