Ich habe ein Weblog eingerichtet (http://www.domain.de/blog). Wenn ich Permalinks aktiviere (http://www.domain.de/blog/archives/123) und eine entsprechende .htaccess automatisch in /blog erstellt wird, dann geht danach nichts mehr.
Inhalt der .htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# END WordPress
Das gesamte Blog wird mit der Fehlermeldung
"Forbidden
You don't have permission to access /blog/ on this server.
---
Apache/2.2.0 (Fedora) Server at http://www.domain.de Port 80"
behandelt - sowohl die Blog-Administration, als auch der Aufruf der Blog-Seite im Browser. Wenn ich per FTP die .htaccess wieder manuel lösche, dann ist der Zugriff wieder möglich.
Was mache ich falsch?
Danke für Eure Unterstützung!
Körner