I have a severe problem with a WordPress installation. I get a 404 not found error when I visit the start page: new.saltaskolan.se, but all other pages work fine. If I manually append the page name "startsidan" (start page in Swedish), the start page also work fine.
My .htaccess is `<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>`