Anfragen von alter Domain auf neue Domain umleiten?

4 Antworten

Wenn kein Zugriff auf die alte Domain besteht und sich da auch keiner kümmert, wird sie ja vermutlich irgendwann eh gelöscht.

Somit würde ich einfach die neue aufbauen und nutzen.

Solche Umleitungen macht man mit der htaccess, aber geht natürlich nur wenn man dort Zugriff hat, sieht dann so aus:

https://www.htaccesserstellen.de/url-redirect-weiterleitung.html

Ich möchte nun gerne dafür eine neue Website erstellen. Problem dabei ist aber nun, dass wir keinen Zugriff auf die Domainverwaltung des Hosters der alten Domain haben (vorherige Vereinsbesitzer ist nicht mehr aktiv und niemand kennt die Login Daten, sowie niemand weiß, oder bekannt geben will wer die Domain erstellt hat)

Vergesst es - ihr seid dazu nicht berechtigt.
Egal, wie man es dreht und wendet.

auf wen die domain registriert ist könnt ihr hier herausfinden.

https://www.denic.de/


mariupoell 
Fragesteller
 20.04.2023, 15:04

Darunter habe ich leider nichts gefunden

0

Öffne die .htaccess datei im root verzeichnis und füg das am ende hinzu

Redirect 301 /alte-url/ http://neue-url.com/

mariupoell 
Fragesteller
 20.04.2023, 07:36

Vielen Dank für die schnelle Antwort. Ich werde das mal so probieren und melde mich.

1
mchawk777  20.04.2023, 08:22
@mariupoell

Du willst mir doch nicht weismachen, dass ihr einerseits Zugriff auf die htaccess-Datei habt - andererseits nicht auf die Domänenverwaltung? 🤷‍♂️
Was wäre dass denn für eine Klitsche von Webhoster, die das zulässt?

0
Kiboman  20.04.2023, 08:30
@mchawk777

wenn sie die FTP login daten haben muss man keinen zugriff auf wen hoster haben, das ist normal wenn der zuständige verantwortliche für den inhalt nicht derjenige ist der auch den webspace bezahlt

3
mariupoell 
Fragesteller
 20.04.2023, 15:03
@Kiboman

Genau so ist es. Es ging leider bei der damaligen übergabe einiges schief. Den alten Gründer interresiert das alles recht wenig und daher habe ich nun den sclamassel. Ich verstehe es ja selbst nicht wie es sein kann, dass niemand Daten hat, irgendwer mus doch auch unwissenhaft die Domain bezahlen

1
mariupoell 
Fragesteller
 20.04.2023, 15:21

Habe das nun eingefügt jedoch funktioniert es nicht könntest du mir vl helfen?

Domain alt = www.stockcar-racing.com

Domain neu wird = www.stockcar-racing.at

htacces Datei

##

# @version $Id: htaccess.txt 21064 2011-04-03 22:12:19Z dextercowley $

# @package Joomla

# @copyright Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.

# @license http://www.gnu.org/copyleft/gpl.html GNU/GPL

# Joomla! is Free Software

##

#####################################################

# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE

#

# The line just below this section: 'Options +FollowSymLinks' may cause problems

# with some server configurations. It is required for use of mod_rewrite, but may already

# be set by your server administrator in a way that dissallows changing it in

# your .htaccess file. If using it causes your server to error out, comment it out (add # to

# beginning of line), reload your site in your browser and test your sef url's. If they work,

# it has been set by your server administrator and you do not need it set here.

#

#####################################################

## Can be commented out if causes errors, see notes above.

Options +FollowSymLinks

#

# mod_rewrite in use

RewriteEngine On

########## Begin - Rewrite rules to block out some common exploits

## If you experience problems on your site block out the operations listed below

## This attempts to block the most common type of exploit `attempts` to Joomla!

#

## Deny access to extension xml files (uncomment out to activate)

#<Files ~ "\.xml$">

#Order allow,deny

#Deny from all

#Satisfy all

#</Files>

## End of deny access to extension xml files

# Block out any script trying to set a mosConfig value through the URL

RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]

# Block out any script trying to base64_encode data within the URL

RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]

# Block out any script that includes a <script> tag in URL

RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]

# Block out any script trying to set a PHP GLOBALS variable via URL

RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]

# Block out any script trying to modify a _REQUEST variable via URL

RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})

# Return 403 Forbidden header and show the content of the root homepage

RewriteRule .* index.php [F]

#

########## End - Rewrite rules to block out some common exploits

########## Begin - Custom redirects

#

# If you need to redirect some pages, or set a canonical non-www to

# www redirect (or vice versa), place that code here. Ensure those

# redirects use the correct RewriteRule syntax and the [R=301,L] flags.

#

########## End - Custom redirects

# Uncomment following line if your webserver's URL

# is not directly related to physical file paths.

# Update Your Joomla! Directory (just / for root)

# RewriteBase /

########## Begin - Joomla! core SEF Section

#

RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

#

# If the requested path and file is not /index.php and the request

# has not already been internally rewritten to the index.php script

RewriteCond %{REQUEST_URI} !^/index\.php

# and the request is for root, or for an extensionless URL, or the

# requested URL ends with one of the listed extensions

RewriteCond %{REQUEST_URI} (/[^.]*|\.(php|html?|feed|pdf|raw))$ [NC]

# and the requested path and file doesn't directly match a physical file

RewriteCond %{REQUEST_FILENAME} !-f

# and the requested path and file doesn't directly match a physical folder

RewriteCond %{REQUEST_FILENAME} !-d

# internally rewrite the request to the index.php script

RewriteRule .* index.php [L]

#

########## End - Joomla! core SEF Section

0
mariupoell 
Fragesteller
 21.04.2023, 10:23
@raleD

Da habe ich es noch nicht eingefügt. Dachte ich füge einmal das Original ein damit es zu keiner verwirrung kommt. Ich weis leider nciht wo ich es einfügen soll...

0
raleD  22.04.2023, 17:56
@mariupoell

Ganz hinten.. eine eine neue zeile wo kein komma am anfang steht.

0