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

后端 未结 22 1213
独厮守ぢ
独厮守ぢ 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:18

    Within the WordPress admin interface do the following:

    1. Go to admin setting

    2. Click on permalink and select post name in radio button.

    3. Scroll down and you will see .htaccess code here like.

      
          RewriteRule ^index\.php$ - [L]
          RewriteCond %{REQUEST_FILENAME} !-f
          RewriteCond %{REQUEST_FILENAME} !-d
          RewriteRule . /wordpress/index.php [L]
       
      
    4. Copy the code and paste in the .htaccess file.

提交回复
热议问题