• I’ve been trying to get my pages to work. Using the console, I have created pages called “press” “artists” for instance.
    The console shows that they are there. However, I got a 404 error. There is no artists.php or press.php file on the server. The error I get is

    “The requested URL /press/ was not found on this server.

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

    The permissions are set to 777. That was the first thing I did.

    My custom structure is currently /%postname%/. I have also tried some of the other ones shown in the console.

    My htaccess files says

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

  • The topic ‘404 errors’ is closed to new replies.