Posts Tagged Server Request
Joomla detect if home page
Posted by in PHP code on July 19th, 2009
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”;
}
?>
$uri = $_SERVER['REQUEST_URI'];
if ($uri == “/”) {
echo “You’re on the homepage”;
}
?>









