deshalb solltest du die .htaccess dort hin laden.
Ich hab es damals bei mir so gelöst (auf deine Url angepasst):
Code: Alles auswählen
Redirect /phpBB3
http://unterwasserwelt.net/
Code: Alles auswählen
Redirect /phpBB3
http://unterwasserwelt.net/
#
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#
#<IfModule mod_rewrite.c>
#RewriteEngine on
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#</IfModule>
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>
DirectoryIndex portal.php index.php index.html index.htm
Code: Alles auswählen
Redirect /phpBB3
http://unterwasserwelt.net/
Code: Alles auswählen
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location:http://unterwasserwelt.net/");
exit;
?>