.htaccess Problem

Debian macht sich hervorragend als Web- und Mailserver. Schau auch in den " Tipps und Tricks"-Bereich.
Antworten
Lyvondria
Beiträge: 19
Registriert: 24.05.2014 13:24:53

.htaccess Problem

Beitrag von Lyvondria » 24.08.2016 11:48:28

Hallo,

Ich hab ein Problem. Und zwar möchte ich, wenn ich auf https://xxxxx.de gehe dass ich auf http://xxxx.com weitergeleitet werde. Zurzeit wird man auf https://forum.xxxx.de weitergeleitet weil das forum, direkt im /var/www order liegt wo natürlich auch die index.php liegt. Und die IP xxx.xx.xxx.xxx wurde auf xxxxx.de UND auf forum.xxxxx.de gelegt. Beides per A Rekord.

Nun mein Problem.

Ich möchte, dass man wenn man auf xxxxx.de auf xxxxx.com weitergleitet wird. Rewrite ist enabled und so sieht meine htaccess aus die in /var/www liegt:

Code: Alles auswählen

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?xxxxxx\.de$ [NC]
RewriteRule ^(.*)$ http://www.xxxx.com/$1 [R=301,L]
Rein theoretisch MUSS es so funktionieren... Aber wenn ich auf xxxx.de gehe, werde ich immernoch auf forum.xxxx.de weitergeleitet.

Wenn ich aber auf xxxx.de/testordner gehe, soll ich NICHT weitergeleitet werden.

xxxx natürlich meine Domain.

Und hier meine 000-default-le-ssl.conf: (000-default-le-ssl.conf weil ich Lets Encrypt Certificat nutze)

Code: Alles auswählen

<IfModule mod_ssl.c>
<VirtualHost *:443>
	# The ServerName directive sets the request scheme, hostname and port that
	# the server uses to identify itself. This is used when creating
	# redirection URLs. In the context of virtual hosts, the ServerName
	# specifies what hostname must appear in the request's Host: header to
	# match this virtual host. For the default virtual host (this file) this
	# value is not decisive as it is used as a last resort host regardless.
	# However, you must set it for any further virtual host explicitly.
	#ServerName www.example.com
<Directory /var/www/>
    Options FollowSymLinks
    AllowOverride All
#    Order deny,allow
#    Deny from all
</Directory>


	ServerAdmin webmaster@localhost
	DocumentRoot /var/www/

	# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
	# error, crit, alert, emerg.
	# It is also possible to configure the loglevel for particular
	# modules, e.g.
	#LogLevel info ssl:warn

	ErrorLog ${APACHE_LOG_DIR}/error.log
	CustomLog ${APACHE_LOG_DIR}/access.log combined

	# For most configuration files from conf-available/, which are
	# enabled or disabled at a global level, it is possible to
	# include a line for only one particular virtual host. For example the
	# following line enables the CGI configuration for this host only
	# after it has been globally disabled with "a2disconf".
	#Include conf-available/serve-cgi-bin.conf
SSLCertificateFile /etc/letsencrypt/live/xxxxx.de/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/xxxx.de/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
ServerName xxxxx.de
ServerAlias forum.xxxxx.de
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

</IfModule>

Ich hoffe mir kann da wer weiterhelfen.

Lyvondria
Beiträge: 19
Registriert: 24.05.2014 13:24:53

Re: .htaccess Problem

Beitrag von Lyvondria » 24.08.2016 12:00:12

Okey, problem gelöst. Nun wird man von xxxx.de auf xxxx.com weitergeleitet. Jetzt noch ein Problem.

Ich hab 3 Tools. Ein Avatargenerator, eine Datenbank wo man Leute einträgt und ein Image Hoster script.

xxxx.de/imagehosting
xxxx.de/avatargenerator
xxxx.de/datenankdb

Wenn ich auf xxxx.de/avatargenerator gehe, dann werde ich auf .com weitergeleitet.
Imagehosting und Datenbank da bleibe ich komicherweise auf die .de Domain...

Brauch ich eine .htaccess im Ordner "avatargenerator" vielleicht?

Lyvondria
Beiträge: 19
Registriert: 24.05.2014 13:24:53

Re: .htaccess Problem

Beitrag von Lyvondria » 24.08.2016 12:23:36

Ok problem auch gelöst :D Kann geclosed werden.
Ich musste eine .htaccess erstellen und nur den eintrag:

Code: Alles auswählen

RewriteEngine On
einfügen und speichern. Nun klappt es.

Antworten