Seite 1 von 1

Intro bild

Verfasst: 08.02.2007 11:51
von Kevurt
Sorry, wenn ich im falschen Bereich poste, wußte wirklich nicht, wo ich es sonst reinschreiben soll.

Ich hab mit FP schon alles fertig, möchte jetzt vor die ganze Sache aber noch eine Introseite mit einer großen Grafik setzen, wo man halt erst klickt und dann zur Home kommt.

Kann mir jemand sagen, wie ich die speichern oder benennen muß?

Ich würde jetzt neue Seite einrichten, die Grafik platzieren und verlinken mit der index.htm und dann weiß ich aber nicht weiter... wie kommt diese Seite als Startseite, wenn ich die domain aufrufe?

Für schnelle Hilfe wäre ich sehr sehr dankbar!!


Kevin

Re: Intro bild

Verfasst: 08.02.2007 16:01
von nickvergessen
Kevurt hat geschrieben:wie kommt diese Seite als Startseite, wenn ich die domain aufrufe?
mit .htaccess
die Lösung steht im MOD für das ezPortal

Code: Alles auswählen

#
#-----[ DIY INSTRUCTIONS ]------------------------------------------
#
HOW TO MAKE YOUR WEBSITE OPEN TO FILE portal.php INSTEAD OF index.php ?
 You can use one of the following methods! Lots of luck!


 o Method 1: (for Apache server)
	create/modify file .htaccess in phpBB root directory
	add/edit this line:

	DirectoryIndex index.html index.htm portal.php index.php


 o Method 2: {use META tag - if you cannot apply the 1st method)
	create file index.html in phpBB root directory (without #)

	<html>
	<head>
	<title>Redirecting...</title>
	<meta http-equiv="refresh" content="0;url=portal.php">
	</head>
	<body>
	</body>
	</html>

	if your phpBB was placed in a subdirectory to the
	webroot, like: http://something.com/forum
	you could create index.html in the webroot and modify the
	line 4 to <meta http-equiv="refresh" content="0;url=forum/portal.php">