Viewing 1 replies (of 1 total)
  • Thread Starter JakeThePeg

    (@jakethepeg)

    In case anyone was curious…it was a .htaccess file issue.
    I had made the file permissions writeable for all users – apparently it didn’t like this so I deleted the .htaccess file contents, reset the permission to 660 and replaced the contents of the file (which were very lengthy) to this:

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

    Does anyone see any problem with this?

Viewing 1 replies (of 1 total)
  • The topic ‘Permalinks – working for posts but not pages’ is closed to new replies.