diff options
author | erik <erik@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2010-11-04 10:47:57 +0000 |
---|---|---|
committer | erik <erik@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2010-11-04 10:47:57 +0000 |
commit | cc0691e4238f6cc11228a2186416d3fc30ad6bda (patch) | |
tree | b0545aabc454271c65ec3d4a65807d39709515a6 /www | |
parent | f86904dcdd39f47f706fe6553816917239c15738 (diff) |
’ne weiterleitung mittels php ist viel schneller, weil das direkt den http-header verändert und keine zeit beim warten auf den browser drauf geht
git-svn-id: https://svn.neo-layout.org@2355 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'www')
-rw-r--r-- | www/bsd/index.html | 11 | ||||
-rw-r--r-- | www/bsd/index.php | 3 | ||||
-rw-r--r-- | www/chat/index.html | 11 | ||||
-rw-r--r-- | www/chat/index.php | 3 | ||||
-rw-r--r-- | www/installation/index.html | 11 | ||||
-rw-r--r-- | www/installation/index.php | 3 | ||||
-rw-r--r-- | www/linux/index.html | 11 | ||||
-rw-r--r-- | www/linux/index.php | 3 | ||||
-rw-r--r-- | www/mac/index.html | 11 | ||||
-rw-r--r-- | www/mac/index.php | 3 | ||||
-rw-r--r-- | www/portabel/index.html | 11 | ||||
-rw-r--r-- | www/portabel/index.php | 3 | ||||
-rw-r--r-- | www/windows/index.html | 11 | ||||
-rw-r--r-- | www/windows/index.php | 3 |
14 files changed, 21 insertions, 77 deletions
diff --git a/www/bsd/index.html b/www/bsd/index.html deleted file mode 100644 index 8b19581..0000000 --- a/www/bsd/index.html +++ /dev/null @@ -1,11 +0,0 @@ -<html> - <head> - <meta http-equiv="content-type" content="text/html; charset=utf-8"> - <meta http-equiv="refresh" content="0; URL=http://wiki.neo-layout.org/wiki/Neo%20unter%20FreeBSD%20einrichten"> - <title>Weiterleitung auf die echte Seite http://wiki.neo-layout.org/wiki/Neo%20unter%20FreeBSD%20einrichten</title> - </head> - <body> - <h3>Weiterleitung auf die echte Seite <a href="http://wiki.neo-layout.org/wiki/Neo%20unter%20FreeBSD%20einrichten">http://wiki.neo-layout.org/wiki/Neo%20unter%20FreeBSD%20einrichten</a></h3> - </body> -</html> - diff --git a/www/bsd/index.php b/www/bsd/index.php new file mode 100644 index 0000000..31f2e02 --- /dev/null +++ b/www/bsd/index.php @@ -0,0 +1,3 @@ +<?php + header("Location: http://wiki.neo-layout.org/wiki/Neo%20unter%20FreeBSD%20einrichten"); +?> diff --git a/www/chat/index.html b/www/chat/index.html deleted file mode 100644 index 6dd16a9..0000000 --- a/www/chat/index.html +++ /dev/null @@ -1,11 +0,0 @@ -<html> - <head> - <meta http-equiv="content-type" content="text/html; charset=utf-8"> - <meta http-equiv="refresh" content="0; URL=http://wiki.neo-layout.org/wiki/IRC"> - <title>Weiterleitung auf die echte Seite http://wiki.neo-layout.org/wiki/IRC</title> - </head> - <body> - <h3>Weiterleitung auf die echte Seite <a href="http://wiki.neo-layout.org/wiki/IRC">http://wiki.neo-layout.org/wiki/IRC</a></h3> - </body> -</html> - diff --git a/www/chat/index.php b/www/chat/index.php new file mode 100644 index 0000000..e61486c --- /dev/null +++ b/www/chat/index.php @@ -0,0 +1,3 @@ +<?php + header("Location: http://wiki.neo-layout.org/wiki/IRC"); +?> diff --git a/www/installation/index.html b/www/installation/index.html deleted file mode 100644 index 2349c67..0000000 --- a/www/installation/index.html +++ /dev/null @@ -1,11 +0,0 @@ -<html> - <head> - <meta http-equiv="content-type" content="text/html; charset=utf-8"> - <meta http-equiv="refresh" content="0; URL=http://wiki.neo-layout.org/wiki/Neo%20einrichten"> - <title>Weiterleitung auf die echte Seite http://wiki.neo-layout.org/wiki/Neo%20einrichten</title> - </head> - <body> - <h3>Weiterleitung auf die echte Seite <a href="http://wiki.neo-layout.org/wiki/Neo%20einrichten">http://wiki.neo-layout.org/wiki/Neo%20einrichten</a></h3> - </body> -</html> - diff --git a/www/installation/index.php b/www/installation/index.php new file mode 100644 index 0000000..68e0e2f --- /dev/null +++ b/www/installation/index.php @@ -0,0 +1,3 @@ +<?php + header("Location: http://wiki.neo-layout.org/wiki/Neo%20einrichten"); +?> diff --git a/www/linux/index.html b/www/linux/index.html deleted file mode 100644 index 115ac27..0000000 --- a/www/linux/index.html +++ /dev/null @@ -1,11 +0,0 @@ -<html> - <head> - <meta http-equiv="content-type" content="text/html; charset=utf-8"> - <meta http-equiv="refresh" content="0; URL=http://wiki.neo-layout.org/wiki/Neo%20unter%20Linux%20einrichten"> - <title>Weiterleitung auf die echte Seite http://wiki.neo-layout.org/wiki/Neo%20unter%20Linux%20einrichten</title> - </head> - <body> - <h3>Weiterleitung auf die echte Seite <a href="http://wiki.neo-layout.org/wiki/Neo%20unter%20Linux%20einrichten">http://wiki.neo-layout.org/wiki/Neo%20unter%20Linux%20einrichten</a></h3> - </body> -</html> - diff --git a/www/linux/index.php b/www/linux/index.php new file mode 100644 index 0000000..9a2c544 --- /dev/null +++ b/www/linux/index.php @@ -0,0 +1,3 @@ +<?php + header("Location: http://wiki.neo-layout.org/wiki/Neo%20unter%20Linux%20einrichten"); +?> diff --git a/www/mac/index.html b/www/mac/index.html deleted file mode 100644 index f34b0ee..0000000 --- a/www/mac/index.html +++ /dev/null @@ -1,11 +0,0 @@ -<html> - <head> - <meta http-equiv="content-type" content="text/html; charset=utf-8"> - <meta http-equiv="refresh" content="0; URL=http://wiki.neo-layout.org/wiki/Neo%20auf%20dem%20Apple%20Macintosh%20einrichten"> - <title>Weiterleitung auf die echte Seite http://wiki.neo-layout.org/wiki/Neo%20auf%20dem%20Apple%20Macintosh%20einrichten</title> - </head> - <body> - <h3>Weiterleitung auf die echte Seite <a href="http://wiki.neo-layout.org/wiki/Neo%20auf%20dem%20Apple%20Macintosh%20einrichten">http://wiki.neo-layout.org/wiki/Neo%20auf%20dem%20Apple%20Macintosh%20einrichten</a></h3> - </body> -</html> - diff --git a/www/mac/index.php b/www/mac/index.php new file mode 100644 index 0000000..99745ca --- /dev/null +++ b/www/mac/index.php @@ -0,0 +1,3 @@ +<?php + header("Location: http://wiki.neo-layout.org/wiki/Neo%20auf%20dem%20Apple%20Macintosh%20einrichten"); +?> diff --git a/www/portabel/index.html b/www/portabel/index.html deleted file mode 100644 index 76dbbfa..0000000 --- a/www/portabel/index.html +++ /dev/null @@ -1,11 +0,0 @@ -<html> - <head> - <meta http-equiv="content-type" content="text/html; charset=utf-8"> - <meta http-equiv="refresh" content="0; URL=http://wiki.neo-layout.org/wiki/Neo%20für%20unterwegs"> - <title>Weiterleitung auf die echte Seite http://wiki.neo-layout.org/wiki/Neo%20für%20unterwegs</title> - </head> - <body> - <h3>Weiterleitung auf die echte Seite <a href="http://wiki.neo-layout.org/wiki/Neo%20für%20unterwegs">http://wiki.neo-layout.org/wiki/Neo%20für%20unterwegs</a></h3> - </body> -</html> - diff --git a/www/portabel/index.php b/www/portabel/index.php new file mode 100644 index 0000000..7fd847f --- /dev/null +++ b/www/portabel/index.php @@ -0,0 +1,3 @@ +<?php + header("Location: http://wiki.neo-layout.org/wiki/Neo%20für%20unterwegs"); +?> diff --git a/www/windows/index.html b/www/windows/index.html deleted file mode 100644 index e1c829b..0000000 --- a/www/windows/index.html +++ /dev/null @@ -1,11 +0,0 @@ -<html> - <head> - <meta http-equiv="content-type" content="text/html; charset=utf-8"> - <meta http-equiv="refresh" content="0; URL=http://wiki.neo-layout.org/wiki/Neo%20unter%20Windows%20einrichten"> - <title>Weiterleitung auf die echte Seite http://wiki.neo-layout.org/wiki/Neo%20unter%20Windows%20einrichten</title> - </head> - <body> - <h3>Weiterleitung auf die echte Seite <a href="http://wiki.neo-layout.org/wiki/Neo%20unter%20Windows%20einrichten">http://wiki.neo-layout.org/wiki/Neo%20unter%20Windows%20einrichten</a></h3> - </body> -</html> - diff --git a/www/windows/index.php b/www/windows/index.php new file mode 100644 index 0000000..119c6ef --- /dev/null +++ b/www/windows/index.php @@ -0,0 +1,3 @@ +<?php + header("Location: http://wiki.neo-layout.org/wiki/Neo%20unter%20Windows%20einrichten"); +?> |