Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/url/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何仅对链接和图像使用绝对URL_Url_Drupal_Drupal 7_Views - Fatal编程技术网

如何仅对链接和图像使用绝对URL

如何仅对链接和图像使用绝对URL,url,drupal,drupal-7,views,Url,Drupal,Drupal 7,Views,如何让Drupal从我的模块中为链接和img路径生成绝对URL? 或者至少通过视图?将此代码添加到您的模块中(将“hook”替换为您的模块名称): hook_url_outbound_alter(&$path, &$options, $original_path) { $options['absolute'] = TRUE; }

如何让Drupal从我的模块中为链接和img路径生成绝对URL?
或者至少通过视图?

将此代码添加到您的模块中(将“hook”替换为您的模块名称):

hook_url_outbound_alter(&$path, &$options, $original_path) {
  $options['absolute'] = TRUE;
}