Going crazy pouring over documentation related to .htaccess and permalinks. I had to put my own .htaccess file onto the server. When I try to work with anything - it either tells me it's not writable (which I corrected), it messes up the static pages (making a 404 message) or I get this message:
403 Forbidden
You don't have permission to access /wp-admin/options-permalink.php on this server.
It seems I've tried every combination to make this work. Really, the site doesn't even operate correctly when the .htaccess file is present - it only works in the basic default permalink mode.
This is the code from the .htaccess file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Short of jumping out my second story window... any thoughts on this? My client is making me work with a little local ISP business that is of little or no help. I've not experienced issues like this before.
Thank you in advance...