No links work.. do you have mod_rewrite installed ? what does your .htaccess contain?
– Nicola
My .htaccess contains of nothing, the same does htaccess.dist
Anything wrong here then?
Where do i check for the mod_rewrite?
Ciao
try adding this into your htaccess, hope can help
RewriteEngine On
RewriteBase /
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ /$1/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
<IfModule mod_security.c>
<Files async-upload.php>
</Files>
</IfModule>
<?php phpinfo() ?>
save it in a file .php and look there if it’s mentioned
Nicola can you describe that alittle better please…i dont understand it! ?
Okay ;o) i did as Sgrunt said made a new Htaccess file and inmput the text he mentioned and now it seems like it works, that you for the great support
Best to you All
René
Denmark