Hall @ll
ich versuche eine Subdomain
einzurichten.
Deshalb habe ich meine sites-available editiert. Diese sieht jetzt folgendermaßen aus:
Dies hat folgende Effekt:
Wenn ich
https://www.meine-domain.de
eintippe komme ich auf meine Standard index.html
Wenn ich
https://forum.meine-domain.de
eintippe komme ich auf meine index.html der Subdomain
so weit so gut.... mache ich folgende s
https://www.forum.meine-domain.de
komme ich auf meine Standard index.html ....
Eigentlich hätte ich eine Fehlermeldung 404 erwartet wenn ich das hier
https://www.forum.meine-domain.de
aufrufe ....
Habt ihr ne Idee
Grüße
sxx
ich versuche eine Subdomain
Code:
forum.meine-domain.de
einzurichten.
Deshalb habe ich meine sites-available editiert. Diese sieht jetzt folgendermaßen aus:
Code:
NameVirtualHost *
<VirtualHost *>
DocumentRoot /var/www/htdocs/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/htdocs/>
Options Indexes FollowSymLinks MultiViews
AllowOverride AuthConfig
Order allow,deny
allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
#RedirectMatch ^/$ /apache2-default/
</Directory>
ScriptAlias /cgi-bin/ /var/www/htdocs/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/apache.pem
</VirtualHost>
<VirtualHost *>
ServerName meine-domain.de
ServerAlias forum.meine-domain.de
DocumentRoot /var/www/htdocs/subdomain/
</VirtualHost>
Dies hat folgende Effekt:
Wenn ich
https://www.meine-domain.de
eintippe komme ich auf meine Standard index.html
Wenn ich
https://forum.meine-domain.de
eintippe komme ich auf meine index.html der Subdomain
so weit so gut.... mache ich folgende s
https://www.forum.meine-domain.de
komme ich auf meine Standard index.html ....
Eigentlich hätte ich eine Fehlermeldung 404 erwartet wenn ich das hier
https://www.forum.meine-domain.de
aufrufe ....
Habt ihr ne Idee
Grüße
sxx