2

我使用 vbulletin 创建了一个网站,我在管理员中安装了 CMS 和 BLOG 模块,我的默认设置是论坛,但是当我们输入主页 url 时,它会将我重定向到 http://www.demo.com/content/ 内容是我的cms页面请帮忙

4

1 回答 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 回答