diff options
-rw-r--r-- | index.php (renamed from index.html) | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,12 @@ +<?php + +$__mobile = include __DIR__ . "/includes/mobile-detect.php"; +if ($__mobile) { + header("Location: site.php"); + exit; +} + +?> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> |