hook_menu drupal在子域上不起作用

时间:2015-04-17 06:12:16

标签: drupal module

我的模块有两个文件:twominutes.info,twominutes.module

twominutes.info

name = Two Minute Module
description = "Demonstration of how quickly you can build a single-page module."
package = Build a Module
core = 7.x
files[] = twominutes.module

twominutes.module

function twominutes_menu() {
  $items['twominutes-page'] = array(
    'page callback' => 'twominutes_page',
    'access arguments' => array('access content'),
    'type' => MENU_CALLBACK,
  );
  return $items;
}

function twominutes_page() {
  return "Hello, world!";
}

在子域上查看时,它不起作用 - 返回404页面。

子域名是:http://sd0.caspian-host.ir/twominutes-page

0 个答案:

没有答案