Home  >  Article  >  CMS Tutorial  >  How to set up WordPress staticization

How to set up WordPress staticization

藏色散人
藏色散人Original
2019-12-04 09:17:023237browse

How to set up WordPress staticization

#How to set up staticization in wordpress?

Regarding the problem of pseudo-static, I believe that friends who use WordPress will be familiar with the WP-Cache plug-in. Not only because of its outstanding performance, it has become almost a must-have plug-in for WP users, but also it is difficult to The installation is also famous. Now we introduce an improved version of WP-Cache plug-in WP Super Cache. Like WP-Cache, it is also a WordPress “static” plugin that can improve WP performance under heavy load through caching. The biggest improvement of WP Super Cache compared to WP-Cache is the addition of Super Cache. Some pages will be cached as SuperCache according to certain rules, and this SuperCache is essentially the page itself.

The second problem is that many windows hosts do not support mod_rewrite or IIS Rewrite. For example, my host space is like this, so I need to use a workaround. The prerequisite is that the server provider's control panel has the option to customize the 404 error page. Most hosts support this.

Recommended: "WordPress Tutorial"

Now you only need to create a 404 error page and write the following 4 lines of code. The elegant implementation without plug-ins perfectly supports the pseudo-static address format of the permanent fixed link of the Windows IIS host. Remove index.php from the web address!

The code is as follows:

<?php
$qs = $_SERVER[&#39;QUERY_STRING&#39;];
$_SERVER[&#39;REQUEST_URI&#39;] = substr($qs, strpos($qs, ‘:80′)+3);
$_SERVER[&#39;PATH_INFO&#39;] = $_SERVER[&#39;REQUEST_URI&#39;];
include(’index.php’);
?>

In this way, the REQUEST_URI and PATH_INFO parameters can be fixed and included in index.php, and the rest will be left to the iis server to complete.

Specific setting steps:

1. Create a new notepad, write the above code in it, save it, and rename it as wp-404-handler.php along with the txt format.

2. Upload the file to the server root directory and set the 404 custom error to point to wp-404-handler.php.

3. Enter the WordPress management background, Settings (Options)-Permalinks (Permalinks), you can set the static address suffix arbitrarily.

For example, I set /%post_id.html, which actually uses the host to find https://www.xxx.net/60.html, and then automatically redirects to wp-404-handler. .php, and this error page extracts the incoming log publication ID of "60" and submits it to https://www.xxx.net/index.php. In fact, there is an extra step on the server side that is equivalent to "jump to error page if page cannot be found", but the effect is still very fast when paired with WP Super Cache.

The above is the detailed content of How to set up WordPress staticization. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn