vbulletin を使用して Web サイトを作成しました。管理者に CMS と BLOG モジュールをインストールしました。デフォルト設定はフォーラムですが、ホームページの URL を入力すると http://www.demo.com/content/ content is myにリダイレクトされます。 cmsページ 助けてください
13082 次
1 に答える
4
vBulletinバージョン<4.2の場合。
vBulletinディレクトリのトップレベルにあるフォーラムインデックスページを変更する必要があります。あなたの質問のURLに基づいて、それはこのファイルです:
http ://www.demo.com/index.php
そのファイルの内容は次のとおりです。CMSまたはフォーラムのどちらをデフォルトのホームページにするかを選択できます。
/**
* You can choose the default script here. Uncomment the appropriate line
* to set the default script. Note: Only uncomment one of these, you must
* add // to comment out the script(s) that you DO NOT want to use as your
* default script.
*
* You can choose the default script even if you do not plan to move this
* file to the root of your website.
*/
/**
* Use the CMS as the default script:
*/
require('content.php');
/**
* Use the forum as the default script:
*/
// require('forum.php');
vBulletinバージョン>=4.2の場合。
新しい「ナビゲーションマネージャー」があります。コントロール設定はここにあります:
Admin Control Panel -> Settings -> Navigation Manager
。
[フォーラム]タブの行を見つけます。
行の右側にはプルダウンセレクターがあり、[デフォルトに設定]をクリックします(後で[実行]ボタンをクリックする必要がある場合があります)。
「サイトのデフォルトを変更」パネルが表示されます。
[フォーラム]タブが[提案されたデフォルト]であり、[変更の確認]で[はい]が選択されていることを確認し、[保存]をクリックします。
フォーラムのホームページがフォーラムのリストになりました。
于 2012-06-22T04:01:56.873 に答える