Verifique la URL si tiene barra de arrastre
$getWholeUrl = "http://".$_SERVER['HTTP_HOST']."".$_SERVER['REQUEST_URI']."";
//The output would be
/*
http://localhost/tabulation/event/event_name/
*/
if(substr($getWholeUrl , -1)=='/'){
//Add your condition here
}
Awful Ape