IIS 6 默认页面不工作

发布于 2024-09-10 23:50:58 字数 235 浏览 3 评论 0原文

我在 IIS 6 上有一个网站,该网站被配置为子域,例如“subdomain.example.com”。

“default.asp”在 IIS 中配置为网站“文档”选项卡上的唯一默认页面。还选中“启用默认内容页面”复选框。

当我尝试浏览“subdomain.site.com”时,出现 404 错误。但是,当我访问“subdomain.example.com/default.asp”时,我会按请求获得页面。我做错了什么?

I have a website on IIS 6 which is configured as a subdomain such as "subdomain.example.com".

"default.asp" is configured in IIS as the only default page on the Documents tab of the Web Site. The "Enable Default Content Page" checkbox is also checked.

When I attempt to browse to just "subdomain.site.com", I get a 404 error. However, when I go to "subdomain.example.com/default.asp", I get the page as requested. What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

燃情 2024-09-17 23:50:58

您只是更改设置吗?如果是这样你需要重新启动iis。打开cmd并输入iisreset。

希望这有帮助。

Have you only just change the settings? If so you need to restart iis. Open cmd and type iisreset.

Hope this helps.

娇妻 2024-09-17 23:50:58

设置默认文档

您可以为未指定文档名称的网站的客户端请求建立默认文档。默认文档可以是目录的主页或索引页。在 IIS 管理器中启用默认文档之前,必须创建默认文档并将其放置在相应网站的根目录或虚拟目录中。

您不能在默认文档名称中使用逗号(例如 my,file.html)。逗号仅用于分隔配置数据库中的多个默认文档。如果默认文档的名称中包含逗号,则 IIS 使用逗号来表示两个默认文档。

您必须是本地计算机上管理员组的成员才能执行以下过程。作为安全最佳实践,请使用不属于管理员组的帐户登录到计算机,然后使用 runas 命令以管理员身份运行 IIS 管理器。在命令提示符处,键入 runas /User:Administrative_AccountName "mmc %systemroot%\system32\inetsrv\iis.msc"。
程序
设置或更改默认文档

1. 在 IIS 管理器中,双击本地计算机,右键单击“网站”文件夹或单个网站文件夹,然后单击“属性”。

在网站级别进行的配置设置将由服务器上的所有网站继承。您可以通过配置单个站点或站点元素来覆盖继承。

2.单击文档选项卡。

3.选中启用默认内容页面复选框。

4.单击添加将新的默认文档添加到列表中。

5.单击要从列表中删除的文档,然后单击“删除”。

6.单击列表中的文档,然后单击“上移”或“下移”以更改为客户请求提供默认文档的顺序。

7.单击“确定”。

复制自 Microsoft技术网

Setting Up Default Documents

You can establish a default document for client requests to a Web site that does not specify a document name. Default documents can be a directory's home page or an index page. Before enabling the default document in IIS Manager, you must create the default document and place it in either the root directory or a virtual directory on the appropriate Web site.

You cannot use commas in a default document name (for example, my,file.html). Commas are used only to delimit multiple default documents in the metabase. If you include a comma in the name of a default document, IIS uses the comma to notate two default documents.

You must be a member of the Administrators group on the local computer to perform the following procedure or procedures. As a security best practice, log on to your computer by using an account that is not in the Administrators group, and then use the runas command to run IIS Manager as an administrator. At a command prompt, type runas /User:Administrative_AccountName "mmc %systemroot%\system32\inetsrv\iis.msc".
Procedures
To set up or change the default document

1.In IIS Manager, double-click the local computer, right-click the Web Sites folder or an individual Web site folder, and then click Properties.

Configuration settings made at the Web Sites level are inherited by all of the Web sites on the server. You can override inheritance by configuring the individual site or site element.

2.Click the Documents tab.

3.Select the Enable default content page check box.

4.Click Add to add a new default document to the list.

5.Click the document you want to remove from the list and click Remove.

6.Click a document from the list and click Move Up or Move down to change the order in which default documents are served to client requests.

7.Click OK.

Copied from Microsoft Technet.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文