WordPress is giving me 404 page not found for all pages except the homepage

后端 未结 22 1240
独厮守ぢ
独厮守ぢ 2021-01-29 21:35

All of a sudden I go to my WordPress website and all the pages give me a 404 page not found page. I\'m assuming the problem lies with the permalink structure, which I could swea

22条回答
  •  深忆病人
    2021-01-29 22:22

    For nginx users

    Use the following in your conf file for your site (usually /etc/nginx/sites-available/example.com)

    location / { try_files $uri $uri/ /index.php?q=$uri&$args; }

    This hands off all permalink requests to index.php with a URI string and supplied arguments. Do a systemctl reload nginx to see the changes and your non-homepage links should load.

提交回复
热议问题