Hi - I'm migrating a wp site to a new server on AWS. I get 404 errors when I use the /%postname%/ url structure. Only the homepage loads.
mod_rewrite is enabled
My htaccess file is writable and contains:
# BEGIN WordPress
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
What else could it be? I can't seem to find the answer!
Thanks