URL rewriting using drupal code

Source: Internet
Author: User
Tags drupal

The following is an example: Copy codeThe Code is as follows :/*
* Convert the pseudo address to the original address (url_alter)
*/
Function example_url_inbound_alter (& $ path, $ original_path, $ path_language)
{
If (preg_match ('| ^ article (/. *) |', $ path, $ matches )){
$ Path = 'node'. $ matches [1];
}
}
/*
* Convert the original address to a pseudo address (url_alter)
*/
Function example_url_outbound_alter (& $ path, & $ options, $ original_path)
{
If (preg_match ('| ^ node (/. *) |', $ path, $ matches )){
$ Path = 'Article'. $ matches [1];
}
}

PS: When hook_url_inbound_alter is implemented, I do not know why the implementation function cannot be called. It may be because the HOOK is loaded too early and the module is not fully loaded. So my approach is to write it in the URL rewriting module, such as subpath_alias

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.