MatzeA: Apache 2.0.48 und eine 304 die ich nicht los bekomme.

Beitrag lesen

Hi,

ich hab eine neue Domain auf dem Testrechner angelegt.
Dabei habe ich den Eintrag des Virtual Host einer vorherigen Domain ceclont.
Dummerweise den Server mit dem alten domainnamen hoch gefahren Fehler bemerkt und berichtigt.

Seit dem kann ich keine Bilder mehr laden.
Der Apache liefert mir ständig eine 304.

Der http.conf eintrag:

<VirtualHost 192.168.xxx.xx>
    ServerAdmin Admin@myotherdomain.net
    <Directory "x:\web\www.mydomain.de\cgi-bin">
       AllowOverride None
       Options ExecCGI
       Order allow,deny
       Allow from all
    </Directory>
    <Directory "x:\web\www.mydomain.de\neu\cgi-bin">
       AllowOverride None
       Options ExecCGI
       Order allow,deny
       Allow from all
    </Directory>
    <Directory "x:\web\www.mydomain.de">
       AllowOverride None
       Options Includes
       Order allow,deny
       Allow from all
    </Directory>
    <Location />
       AuthType Basic
       AuthUserFile x:\web\access\passwd
       AuthGroupFile x:\web\access\group
    </Location>
    <Location /admin>
       AuthName "Administrator-Zugang"
       require group admin
    </Location>

DocumentRoot x:/web/www.mydomain.de
    ServerName www.mydomain.de
    ErrorLog logs/www.mydomain.de-error_log
    CustomLog logs/www.mydomain.de-access_log common
</VirtualHost>

Der wiz ist, die index.html wird tatsächlich ausgeliefert nur dieses image File nicht.

Kann mir jemand erklären, wie ich das wieder los bekomme?

Gruss Matze