The following tutorial column of Pagoda Panel will introduce to you the solution for 404 on all WordPress pages and the article cannot be found in the category page navigation. I hope it will be helpful to friends who need it!
# WordPress all pages 404 Can’t find the article in the category page navigation?
Today I changed the fixed link of wordpress and found that all pages were 404, and the category navigation could not find the article, so I searched for a long time. Settings, and finally found that it was just fine to set the Nginx rules
location /
{
try_files $uri $uri/ /index.php?$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
Copy after login
Pagoda comes with this setting
The above is the detailed content of What should I do if the article cannot be found in the category page navigation of all WordPress pages in Pagoda Panel? 404?. For more information, please follow other related articles on the PHP Chinese website!