I am also facing the same issue where in my site is working for plain permalink but now for post one.
My .htaccess file content is as under:
# 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
My Default theme is getting loaded but links are not working there after. Any experienced person’s assistance is much appreciated.