1 頁 (共 1 頁)

[教學]讓你的 PhpBB Plus 從Portal開始

發表於 : 2003-04-17 23:04
godbless
[教學]讓你的phpbb Plus可以從Portal開始

打開

代碼: 選擇全部

/apache/conf/httpd.conf
找到:

代碼: 選擇全部

<IfModule mod_dir.c>
    DirectoryIndex index.html index.htm index.php index.php3
</IfModule>
改成:

代碼: 選擇全部

<IfModule mod_dir.c>
    DirectoryIndex portal.php index.html index.htm index.php index.php3
</IfModule>
就可以啦~

或是\r
蒼浩 寫:新增一個文字檔,將這個文字檔名稱改為「htaccess」,然後編輯內容:

代碼: 選擇全部

DirectoryIndex portal.php index.php
加上這一行,存檔,上傳到 index.php 在的目錄。
然後修改這個檔案的檔名為「.htaccess」(前面有個點)即可,免改 apache 設定。

發表於 : 2003-05-29 20:04
william91
補充一下^^

還要Restart Apache Server~

這才會有效 ;-)

發表於 : 2003-05-31 13:30
mch
於前一個資料夾 ../ 指定自動轉入的版面不是更好嗎??
[php]<?php header("location: xxx/portal.php"); ?>[/php]

發表於 : 2003-05-31 14:06
動感超人
mch 寫:於前一個資料夾 ../ 指定自動轉入的版面不是更好嗎??
[php]<?php header("location: xxx/portal.php"); ?>[/php]
有些人直接在網址打http://yourdoamin/phpbb2/
這個方法就不適用了

發表於 : 2003-05-31 14:19
william91
動感超人 寫:
mch 寫:於前一個資料夾 ../ 指定自動轉入的版面不是更好嗎??
[php]<?php header("location: xxx/portal.php"); ?>[/php]
有些人直接在網址打http://yourdoamin/phpbb2/
這個方法就不適用了
對.還是goldbless的方法比較好...