Drupal Code Implementation URL Rewrite _php tutorial

Source: Internet
Author: User
Tags drupal
The following are examples of implementations:
Copy CodeThe code is as follows:
/*
* Pseudo address Forwarding 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 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 can not be adjusted, possibly because the hook is loaded prematurely, the module is not loaded completely. So my approach is to write in the URL rewrite module, for example Subpath_alias

http://www.bkjia.com/PHPjc/323213.html www.bkjia.com true http://www.bkjia.com/PHPjc/323213.html techarticle The following is an example of implementation: Copy code code as follows:/* * Pseudo address Forwarding address (url_alter) */function Example_url_inbound_alter (}}/* Original address pseudo address (url_alter) */FU NCT ...

  • 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.