you said here:
then I go to the WP settings for permalinks and save my settings again (without changing anything) …
If you would stop looking at things inside your cpanel, and look at the actual file (.htaccess) on your server you would see that it looks similar to what you pasted in your other thread:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteRule .* – [F]
</IfModule>
# END WordPress`
IF, inside your .htaccess you are adding anything in between the begin and end statements, manually, its all going to be removed once you update your permalinks, whether you think you are making changes or not. You may not be making changes to your permalink structure, but you are making changes to that block of text.
Additionally, from your other thread you will notice that the the tech guy at aso told you that your .htaccess was world-writable, and that he had “fixed” that. Notice also, that the permalink options page within wordpress clearly tells you that you must edit your .htaccess manually OR change the permissions on it in order for your changes to be made.
In other words, wordpress is showing you in that box, what needs to be changed. YOU make the changes if wordpress cannot.And since your .htaccess isnt world-writable anymore, it cant.
I have offered to help you — you havent contacted me, so Im just going to say this…
Ive explained this the best I can. I really recommend taking a deep breath and reading what you see eon the various administration pages that are provided to you by WordPress, as you do things.
I have also shown you exactly how to disallow hotlinking while still allowing your site to load images.