What is pseudo-static? Why does PHP use pseudo-static?
After introducing pseudo-static, I will add two more nouns to parse static URLs: pure static HTML document, you can use filetype:htm QueryThe web page reached, dynamic URL: the content is stored in the database, and the content is displayed according to the requirements. The URL ends with? # & Display different parameters, such as: news.php? lang=cn&class=1&id=2
Pseudo-static is relative to real static.
1. What is static technology?
The so-called static means that there is no question mark in the address.
2. Why use pseudo-static technology?
One of the biggest features of Web applications is statelessness. When one page jumps to another page, all parameters on this page will be discarded. Therefore, dynamic pages generally use URL addresses to save their parameters. Like:
www.attjs.net/essay.asp?id=1
In this way, when the search engine admits this page, it may enter an endless loop because of the question mark (previously Dongwang There is such a loophole that spiders cannot get in), so in many cases addresses with question marks will not get in, which reduces the efficiency of page collection.
In this case, wouldn’t choosing a URL without a question mark make it easier for search engines to index your own web pages? indeed. The URL of a static web page happens to not have a question mark, so we have to fake it for the sake of SEO and improve the efficiency of website inclusion.
1. About the use of pseudo-static
Some users think that the actual number of included posts between pseudo-static and true static will be very different. In fact, this is not the case. From your personal perspective, you can judge whether a post is truly static or not. Pseudo-static?
It is probably difficult to see, because the so-called static means that there is no question mark in the address. The address without question mark is static. Does it matter whether it is real or fake? Can the search engine see it? So? , in fact, whether it is real or fake, it is the same for search engines. The search engine did not say that you are fake and I will not include you.
In the final analysis, why search Will the engine not include URLs with question marks? Because search engines are afraid of entering an endless loop due to question marks, so many times addresses with question marks will not be included. For search engines, pseudo-static is actually static because there is no URL in the address. Question mark, so there is no saying that true static is included more than pseudo static.
2. About the disadvantages of pseudo static
Of course, as the author of an article said, "If the traffic is slightly larger and pseudo static is used, the CPU will appear When using overload, my system crashed when more than 300 people were online at the same time, but when I did not use pseudo-static, even when more than 500 people were online at the same time, my ISS number was 1000. This is indeed the case, because pseudo-static is judged by regular rules. Instead of the real address, the responsibility for determining which page to display is transferred from direct specification to the CPU. Therefore, the increase in CPU usage is indeed the biggest drawback of pseudo-static.
Summary
1. Use true static The method can be directly eliminated, because no matter how it is generated, it will be very harmful to the hard disk.
2. Since the effect of true and false static is the same, we can choose pseudo static.
3. But fake static Extensive use of static will cause CPU overload.
4. So we only need to not use it in large quantities.
5. Since static is only for SEO to see, we only need to use pseudo-static for SEO, and there is no need to give it. User use.
6. So we only need to use pseudo-static in the Archiver specially provided for SEO crawling
I hope this article will be helpful to your work.
Related recommendations:
Detailed explanation of writing pseudo-static rules in php
Enabling pseudo-static mode in php
What is pseudo-static? What is the significance of using pseudo-static in PHP?
Summary of several ways of how to implement pseudo-static in php
The above is the detailed content of What is pseudo-static? Why does PHP use pseudo-static?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

The speed of mobile XML to PDF depends on the following factors: the complexity of XML structure. Mobile hardware configuration conversion method (library, algorithm) code quality optimization methods (select efficient libraries, optimize algorithms, cache data, and utilize multi-threading). Overall, there is no absolute answer and it needs to be optimized according to the specific situation.

The difference between string printing in Go language: The difference in the effect of using Println and string() functions is in Go...

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Go pointer syntax and addressing problems in the use of viper library When programming in Go language, it is crucial to understand the syntax and usage of pointers, especially in...

XML Online Format Tools automatically organizes messy XML code into easy-to-read and maintain formats. By parsing the syntax tree of XML and applying formatting rules, these tools optimize the structure of the code, enhancing its maintainability and teamwork efficiency.

Why does map iteration in Go cause all values to become the last element? In Go language, when faced with some interview questions, you often encounter maps...
