Posts Tagged Server Request

Joomla detect if home page

To detect if current page is Joomla hage page, do this code:

<?php
$uri = $_SERVER['REQUEST_URI'];
if ($uri == “/”) {
echo “You’re on the homepage”;
}
?>

, , , , , ,

2 Comments