Nginx/apache/iis pseudo-static writing and Difference

Source: Internet
Author: User

For work reasons, I want to write a pseudo-static file as an instance nginx apache iis cache. Here we will separate my instances.

Apache pseudo-static writing

Rewriteengine on
Rewriterule/rss/(. *). xml $/rss. php tutorial? A = $1
Rewriterule/xml/(. *). xml $/xml. php? A = $1



Iis pseudo-static writing

Rewriterule/rss/(. *). xml $/rss. php? A = $1 [n, I]
Rewriterule/xml/(. *). xml $/xml. php? A = $1 [n, I]

Nginx pseudo-static writing

Rewrite ^/rss/(. *). xml $/rss. php? A = $1 last;
Rewrite ^/xml/(. *). xml $/xml. php? A = $1 last;

Summary of the differences between the three

See the above three instances. For nginx/apache/iis pseudo-static writing, apache and iis add [n, i] But the difference between iis and nginx pseudo-static writing is that the start ^ and end with a last. In a word, they are too minor.

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.