I'm working with an accesspoint with OPENWRT and I want to redirect the hosts connected via Wifi to a concrete page. The problem is that when I turn on the browser appears infinite loop saying "redirecting", and this all the time. I have tried to modify the chilli config file by adding:
HS_REDIRSSL=on
HS_SSLKEYFILE=/etc/chilli/key.pem
HS_SSLCERTFILE=/etc/chilli/cert.pem
but I'm still having the same problem. Could someone help me?
This is my html code to redirect the hosts:
<html>
<head>
<meta http-equiv="refresh" content="0; url=http://footanalytics.com/" />
</head>
<body>
<font size="3" face="verdana" color="black">
<i>REDIRECTING</i>
</font>
</body>
</html>
Thank you