Guten Abend. Ich denke ich bin ein Stückchen weiter gekommen in meiner Fehlersuche. Kann mein Problem etwas mit der .htaccess Datei zu tun haben? Diese ist nämlich unterschiedlich zwischen Bitnami Installation und manueller Installation.
Bei der Bitnami Installation gibt es keine .htaccess Datei mehr. Dort wurde alles in die httpd-app.conf ausgelagert. Darin wiederum wird die Datei htaccess.conf inkludiert.
Hier der Inhalt der httpd-app.conf:
Apache Configuration
RewriteEngine On
RewriteRule /<none> / [L,R]
<Directory "C:/xampp/apps/wordpress/htdocs">
Options +MultiViews +FollowSymLinks
AllowOverride None
<IfVersion < 2.3 >
Order allow,deny
Allow from all
</IfVersion>
<IfVersion >= 2.3>
Require all granted
</IfVersion>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [S=1]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</Directory>
Include "C:/xampp/apps/wordpress/conf/htaccess.conf"
Alles anzeigen
Inhalt der htaccess.conf:
Code
<Directory "C:/xampp/apps/wordpress/htdocs/wp-content/plugins/akismet">
# Only allow direct access to specific Web-available files.
# Apache 2.2
<IfModule !mod_authz_core.c>
Order Deny,Allow
Deny from all
</IfModule>
# Apache 2.4
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
# Akismet CSS and JS
<FilesMatch "^(form\.js|akismet\.js|akismet\.css)$">
<IfModule !mod_authz_core.c>
Allow from all
</IfModule>
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
</FilesMatch>
# Akismet images
<FilesMatch "^logo-full-2x\.png$">
<IfModule !mod_authz_core.c>
Allow from all
</IfModule>
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
</FilesMatch>
</Directory>
Alles anzeigen
Bei meiner manuellen WP Installation sieht die .htaccess Datei so aus:
Apache Configuration
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /gfsel/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /gfsel/index.php [L]
</IfModule>
# END WordPress
Alles anzeigen
Liege ich mit meinem Gedanken, das es eventuell damit zusammen hängt richtig?
Gruß Kay