leuze-russia.ru Ads.txt file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirect Based on Device Type</title>
<script>
// Check if the device is mobile
const isMobile = /Mobi|Android/i.test(navigator.userAgent);
// Redirect to the appropriate file based on device type
if (isMobile) {
// Redirect to mobile_test7.html for mobile devices
window.location.href = "mobile_test12.html";
} else {
// Redirect to index34.html for desktop devices
window.location.href = "index77.html";
}
</script>
</head>
<body>
<p>Loading...</p>
</body>
</html>