this is my module file.
function mymenu_menu() {
$item=array();
$item['welcome'] = array(
'title' => 'welcome',
'page callback' => 'mymenu_test',
'type' => MENU_CALLBACK,
);
return $item;
}
function mymenu_test(){
$output = 'welcome user!';
return $output;
}
when i access example.com/welcome. it show access denied, why?