Hallo :-)
Kann man irgendwie die Fehlermeldungen ändern wenn z.B. eine Seite oder Datei auf meinem Server nicht gefunden wurde dass dann ein Bild geladen wird ?
Gruß, PingOfDeath
Homepage selbermachen 7.852 Themen, 35.619 Beiträge
... kann man, wird in der httpd.conf geregelt ...
8> # Customizable error response (Apache style)
# these come in three flavors
#
# 1) plain text
#ErrorDocument 500 "The server made a boo boo.
# n.b. the (") marks it as text, it does not get output
#
# 2) local redirects
#ErrorDocument 404 /missing.html
# to redirect to local URL /missing.html
#ErrorDocument 404 /cgi-bin/missing_handler.pl
# N.B.: You can redirect to a script or a document using server-side-includes.
#
# 3) external redirects
#ErrorDocument 402 http://some.other_server.com/subscription_info.html
# N.B.: Many of the environment variables associated with the original
# request will *not* be available to such a script.
-------------------------------------------------------------------> Für Apache 1.3x: http://httpd.apache.org/docs/mod/core.html#errordocument
für 2.x:
http://httpd.apache.org/docs-2.0/mod/core.html#errordocument
HTH, Z.
Ja, das geht entweder über die httpd.conf für den gesamten Server oder virtuelle Server, oder man kann über die .htaccess gezielt für einzelne Unterverzeichnisse spezielle Fehlerseiten angeben.
Schau mal in die httpd.conf und suche nach 404.html, in der entsprechenden Sektion wirst Du fündig.
Der Eintrag muß ungefähr so aussehen:
ErrorDocument [Fehlernummer (400, 403, 404, etc)] Name_und_Pfad_deiner_Fehlerseite