Answer the question
In order to leave comments, you need to log in
How to change links when redirecting to mobile version?
There is a redirect code for the mobile version:
//-----------------------------------------------
// MOBILE DETECT + COOKIE
//-----------------------------------------------
if( isset($_GET['nomobile']) ){
setcookie('nomobile','1',time()+3600*24,'/');
$_COOKIE['nomobile'] = 1;
}
define('NOMOBILE',isset($_COOKIE['nomobile']));
require_once 'Mobile_Detect.php';
$detect = new Mobile_Detect();
if(!NOMOBILE and ($detect->isMobile() or $detect->isTablet())){
header("Location: ".'https://'.$_SERVER['HTTP_HOST'].'/lofiversion/');
}
exit();
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question