鉴于大家对PHP十分关注,我们编辑小组在此为大家搜集整理了“drupal 代码实现URL重写”一文,供大家参考学习
以下是实现例子:
复制代码 代码如下:
/*
* 伪地址转原地址 (url_alter)
*/
function example_url_inbound_alter(&$path, $original_path, $path_language)
{
if (preg_match(''|^article(/.*)|'', $path, $matches)) {
$path = ''node''. $matches;
}
}
/*
* 原地址转伪地址 (url_alter)
*/
function example_url_outbound_alter(&$path, &$options, $original_path)
{
if (preg_match(''|^node(/.*)|'', $path, $matches)) {
$path = ''article'' . $matches;
}
}
PS: 实现hook_url_inbound_alter时不知为何会调不出实现函数,可能因为HOOK过早加载,没有把module加载完全。所以我的做法是写在URL重写模块中,例如subpath_alias