Pseudo static is relative to real static. Real static generates a file with an html or htm suffix, and visitors can access the real static page. Pseudo static does not generate an entity static page file, but only in the form of static pages such as. html. In fact, it is processed by PHP program dynamic script, which is called pseudo static.
1. Advantages and disadvantages of static pages:
Real static is usually used to better alleviate the pressure of the server and enhance the friendliness of the search engine, so they all generate static pages from web pages. But the biggest defect is that every time you modify the page content in the background of the website, you need to regenerate the static page, and you cannot display the updated content in real time. After a long time, the website has more content, the space occupied and the server resources consumed each time you generate the static page should not be underestimated (there are cases where the server crashes due to too much content and one-time generation of static pages).
2. What are the disadvantages of pseudo static?
Since pseudo static is to use regular judgment to determine the page to jump to instead of the real page address, and the responsibility for identifying which page to display is also directly assigned to the server CPU, the increase in CPU occupancy is indeed the biggest disadvantage of pseudo static.
3. What does pseudo static do?
Some friends want to use dynamic scripts to solve some problems in order to display some information in real time, instead of displaying website content in a static way, but this has lost the friendliness to search engines. How can we find a middle way between the two? This leads to the pseudo static technology.