Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Wordpress configuration fixed link nginx access 404 problem solver

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/03 Report--

Problem found:

WordPresss home page, click on the article link, return to 404, cannot view

Solution: 1. Modify the configuration file

Vim / etc/nginx/nginx.conf

Server {listen 80; server_name www.ca.com; access_log / var/log/nginx/access.log main;location / {root / usr/share/nginx/html; index index.php index.html index.htm;# add this paragraph if (- f $request_filename/index.html) {rewrite (. *) $1/index.html break } if (- f $request_filename/index.php) {rewrite (. *) $1index.php;} if (!-f $request_filename) {rewrite (. *) / index.php;}} rewrite / wp-admin$ $scheme://$host$uri/ permanent;# to this location location ~\ .php$ {root / www/data/xxx Fastcgi_pass 127.0.0.1 fastcgi_pass 9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params;} 2. Restart the service

Systemctl restart nginx

3. Web page validation: solving issu

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report