i would try to set permalinks to default (?p=1) an then with a writeable .htaccess change back to the custom style u had before.
after that u should check the htaccess, if the right code is there.
like
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress