ispCP - Board - Support
[ERLEDIGT] index.htm - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega International Area (/forum-22.html)
+--- Forum: German Corner (/forum-26.html)
+---- Forum: Archiv (/forum-54.html)
+---- Thread: [ERLEDIGT] index.htm (/thread-2189.html)

Pages: 1 2


[ERLEDIGT] index.htm - anne123 - 01-20-2008 10:48 PM

Hallo Leute, erst mal allen einen schönen Sonntag.

Wie kann ich einstellen, dass die Startseite auch mit .htm enden darf? Im Moment wird nur .html akzeptiert.
In meiner apache2.conf steht folgendes drin.
AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core


RE: index.htm - Zothos - 01-20-2008 11:02 PM

Addicon ist hier der falsche befehl. Such mal nach addhandler

bsp aus einem meiner v-hosts:
Code:
<Location /scripts>
     AddHandler server-parsed .shtml
</Location>

hier der docu eintrag von apache:
http://httpd.apache.org/docs/1.3/mod/mod_mime.html#addhandler


RE: index.htm - MoritzDorn - 01-20-2008 11:04 PM

anne123 Wrote:Hallo Leute, erst mal allen einen schönen Sonntag.

Wie kann ich einstellen, dass die Startseite auch mit .htm enden darf? Im Moment wird nur .html akzeptiert.
In meiner apache2.conf steht folgendes drin.
AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core

Einen schönen Sonntag zurück,

das was du da hast, sagt dem Server nur, welchem Dateitypen er welches Icon zuordnet, und dies wird nur beim Directory Listing gemacht, das hat nichts mit der Endung von html / htm zu tun.
Ich starte nur mal mein Rechner neu, dann schau ich auch mal rein.


RE: index.htm - rbtux - 01-21-2008 03:47 AM

http://httpd.apache.org/docs/2.2/mod/mod_dir.html#directoryindex


RE: index.htm - anne123 - 01-21-2008 03:47 AM

Habe ein paar Änderungen vorgenommen, aber kein Erfolg.

AddHandler type-map var

#
# Filters allow you to process content before it is sent to the client.
#
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)
#
AddType text/html .shtml .htm
AddOutputFilter INCLUDES .shtml .htm
</IfModule>


RE: index.htm - rbtux - 01-21-2008 03:48 AM

mach das rückgängig! hat nichts mit dem problem zu tun...


RE: index.htm - anne123 - 01-21-2008 04:39 AM

rbtux Wrote:mach das rückgängig! hat nichts mit dem problem zu tun...

Ok danke habe ich rückgängig gemacht. Tja und nun....


RE: index.htm - Cube - 01-21-2008 04:52 AM

Die Lösung hat rbtux doch schon gepostet: die Direktive DirectoryIndex um den gewünschten Wert erweitern.


RE: index.htm - anne123 - 01-21-2008 05:03 AM

Hm und wo finde ich die? Ich kenne den Pfad nicht.


RE: index.htm - Cube - 01-21-2008 05:19 AM

Wenn es für alle Kunden sein soll, ist es am einfachsten die Datei /etc/apache2/mods-available/dir.conf zu bearbeiten. Wenn es für einen einzelnen Kunden sein soll, packt man den Inhalt aus dieser Datei in die Apache-Config-Datei eines Kunden.