Quoting Baidu's explanation of pseudo-static: Pseudo-static is relative to real static. Usually, in order to enhance the friendliness of search engines, we generate static pages for article content, but some friends want to display some information in real time. Or you may want to use dynamic scripts to solve some problems. Website content cannot be displayed in a static way. But this will lose the friendliness to search engines. How to find a middle ground between the two? This is where pseudo-static technology comes into play. It is displayed in the form of a static page such as HTML, but is actually processed using a dynamic script such as ASP. First, configure the server module in Nginx as follows: location / { if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_filename/index.php){ rewrite (.*) $1/index.php; } if (!-f $request_filename){ rewrite (.*) /index.php; } } After the configuration is complete, restart Nginx Then, in the "Settings" - "Permanent Links" of the WordPress blog background, customize the structure (my setting is: /%category%/%post_id%.html, that is: category/article id.html), as shown in the figure: At this point, the pseudo-static setting of the WordPress blog is completed. Here is a brief introduction to the fixed link setting parameters: 1. %year% is based on the year the article was published, such as 2007; By combining the above parameters, you can get the fixed link form of WordPress. Several common settings methods on the Internet: The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: MySQL SQL statement method to hide the middle four digits of the mobile phone number
>>: Notes on using $refs in Vue instances
Table of contents 1. Prototype chain inheritance ...
Preface Using Docker and VS Code can optimize the...
Since the introduction of the contentEditable attr...
Tomcat accesses the project, usually ip + port + ...
mysql 8.0.22 winx64 installation and configuratio...
Beautiful code is the foundation of a beautiful we...
Forwarding between two different servers Enable p...
Table of contents 1. Overview 1.1 Creating a func...
The complete syntax of the SELECT statement is: (...
As the first article of this study note, we will ...
Recent product testing found a problem that when ...
Click here to return to the 123WORDPRESS.COM HTML ...
This article shares the specific code of JS canva...
Knowledge point 1: Set the base URL of the web pa...
Install grafana. The official website provides an...