<?php

file_put_contents('requests.txt', "{$_SERVER['REQUEST_URI']}\t{$_SERVER['HTTP_USER_AGENT']}\n", FILE_APPEND | LOCK_EX);

header('HTTP/1.1 301 Moved Permanently');
header('Location: https://cssamp.com/');

exit(0);

?>