Have you tried resetting your permalinks under settings->permalinks? It looks like you do not have a working .htaccess file. Is there one in your site’s root?
Thank you Steve. I have resetted the settings for permalinks with no results. My .htaccess file
my .htaccess:
# 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
[Moderator note: code fixed. Please wrap code in the backtick character or use the code button.]
I’ve lots of plugins deaktivated. A backup was also without results.
I’ cant find a solution.
What happend?
Best regards
Norman
-
This reply was modified 8 years, 4 months ago by
bdbrown.
How are you hosting your site? If you’re using a self-configured VPS, you’ll need to make sure that these three lines are in the config file used to define your virtual host (probably httpd.conf or apache2.conf, depending on your OS)
<Directory /path/to/wordpress>
AllowOverride All
</Directory>
where /path/to/wordpress
is something like /var/www/html
. After changing the config file, you’ll need to restart apache.
Hello Steve, thank you very much. I’ve found the problem, when I deactivated al plugins. Now I’am going to check, which plugins has provided 404 errors.