• Hello all!

    I edit a site for a university festival, and it has somehow disappeared and comes up with this error.

    “Not Found

    The requested URL /index.php was not found on this server.

    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.”

    I try logging into the admin page and it will not let me.

    Anyone have there blog just disappear???

Viewing 1 replies (of 1 total)
  • InterServer

    (@interservernet-web-hosting)

    Please check if the index.php file exists in the root directory of the domain. If exists, check if the file has correct permission which is 644. Also if .htaccess file does not exists in the root directory of the website, please create a new .htaccess file with the following contents.

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    You can also refer the following WordPress documentation to get more information.

    https://codex.www.ads-software.com/htaccess

Viewing 1 replies (of 1 total)
  • The topic ‘404 Not Found error’ is closed to new replies.