PHP uses the Apache rewrite rule to convert the access link to a problem?

Source: Internet
Author: User
Like what:


Http://www.xxx.com/x/index.html
Http://www.xxx.com/x/index.html?b1=y&b2=z&
Http://www.xxx.com/x/question.html
Http://www.xxx.com/x/question.html?b1=y&b2=z&

How to write rewrite rules, the above conversion to the following link: (That is, the value of A1 This parameter to the question mark after the argument passed in)


Http://www.xxx.com/index.php?a1=x
Http://www.xxx.com/index.php?a1=x&b1=y&c1=z&
Http://www.xxx.com/question.php?a1=x
Http://www.xxx.com/question.php?a1=x&b1=y&c1=z&

Reply content:

Like what:


Http://www.xxx.com/x/index.html
Http://www.xxx.com/x/index.html?b1=y&b2=z&
Http://www.xxx.com/x/question.html
Http://www.xxx.com/x/question.html?b1=y&b2=z&

How to write rewrite rules, the above conversion to the following link: (That is, the value of A1 This parameter to the question mark after the argument passed in)


Http://www.xxx.com/index.php?a1=x
Http://www.xxx.com/index.php?a1=x&b1=y&c1=z&
Http://www.xxx.com/question.php?a1=x
Http://www.xxx.com/question.php?a1=x&b1=y&c1=z&

I write a index.html rule, question.html of the title of the Lord according to his own write it.
RewriteRule ^/x/index.html$ /index.php?a1=x [NC,L]
RewriteRule ^/x/index.html\?([^\/])+$ /index.php?a1=x&$1 [NC,L]

Using a regular matching inverse reference, in fact a1,b1,c1 three parameters can be written into the rewriterule, the front pseudo-static behind the query string is not a bit strange.

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