PHP learning notes: Writing pseudo-static rules, php learning notes pseudo-static

Source: Internet
Author: User

PHP learning notes: Writing pseudo-static rules, php learning notes pseudo-static

Here we use Apache as the server software and use the case directly:

1. Redirect index.html to index. php

RewriteEngine OnOptions -IndexesReWriteRule ^index.html$  /index.php  [NC]

Effect: the result of accessing www.test.com/index.htmlis www.test.com/index.php.

 

2. Redirect index to index. php

RewriteEngine OnOptions -IndexesReWriteRule ^index$  /index.php  [NC]

Effect: Accessing www.test.com/indexeffect is equivalent to www.test.com/index.php.

 

3. php files in the root directory can be accessed with html suffixes

Statement 1:

RewriteEngine OnOptions -IndexesReWriteRule ^([a-zA-Z0-9_]{1,})\.html$  /$1.php  [NC]

Effect: the result of accessing www.test.com/index.htmlis www.test.com/index.php.

Access www.test.com/abc.htmlresult is equivalent to www.test.com/abc.php

4. directly access the PHP file in the root directory with the same effect as the file name.

RewriteEngine OnOptions -IndexesReWriteRule ^([a-zA-Z0-9_]{1,})$  /$1.php  [NC]

Effect: Accessing www.test.com/indexeffect is equivalent to www.test.com/index.php.

Accessing www.test.com/abceffect is equivalent to www.test.com/abc.php

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.