Drupal code implements URL rewrite _php tips

Source: Internet
Author: User
Tags drupal
Here is the implementation example:
Copy Code code as follows:

/*
* 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];
}
}
/*
* Original address to the 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 implementing Hook_url_inbound_alter, I do not know why the implementation function could not be adjusted, possibly because the hook was loaded prematurely and did not load the module completely. So my approach is to write in the URL rewrite 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.