Könnte daran liegen, dass Du die (versteckte!) Datei [FONT=Courier New].htaccess[/FONT] gelöscht hast.
Erstell mal im root-directory mit einem Editor eine neue Datei [FONT=Courier New].htaccess[/FONT] mit folgendem Inhalt:
Apache Configuration
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
</IfModule>
# 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
#protect wp-config.php
<files wp-config.php>
Order deny,allow
deny from all
</files>
#end protect wp-config.php
Options -Indexes
Alles anzeigen
Das setzt natürlich voraus, dass Dein Provider das Apache Module mod_rewrite aktiviert hat.