English version - Portal as mainpage
math - 17-05-2007, 11:33 Temat postu: Portal as mainpage Hallo
I've got a question: How can I do, that the the portal-page came directly as the mainpage ?
Centurion - 17-05-2007, 12:29
The easiest way is editing .htaccess file in your top forum directory and write there something like that:
Kod: | DirectoryIndex portal.php |
note that .htaccess is hidden file and may not be visible while listing the FTP directory
nicon - 17-05-2007, 13:47
Cytat: | The easiest way is editing .htaccess file in your top forum directory and write there something like that:
Kod:
DirectoryIndex portal.php |
The best if U set:
Kod: | DirectoryIndex portal.php index.php index.html |
In that way, if portal.php will be in this folder, first script will try to run it, if not will try index.php, etc.
Cytat: | note that .htaccess is hidden file and may not be visible while listing the FTP directory |
If U can't find this file, just make new...
Name:
.htaccess
JA$ON - 17-05-2007, 17:34
or you just create a index.html file with the source code like this one:
Kod: | <html>
<head>
<title></title>
<meta http-equiv="refresh" content="0; URL=portal.php">
</head>
<body>
</body>
</html>
|
the<meta http-equiv="refresh" content="0; URL=portal.php"> means the page redirects you to portal.php after 0 seconds.
|
|
|