在IIS中制作网站时出错

时间:2011-05-04 04:54:27

标签: asp.net iis-7 dotnetnuke

我是dnn的新手。我想在IIS7中建立一个网站。但这显示了Followinf错误。 如果这个错误将被删除 错误:

域名实验在数据库中不存在

DotNetNuke支持来自单个数据库/代码库的多个门户。它通过将客户端浏览器Request的URL转换为Portals数据库表中的有效PortalID来实现此目的。以下步骤描述了该过程:

Web Server Processing
    When a web server receives a Request from a client browser, it compares the file name extension on the target URL resource to its Application Extension Mappings defined in IIS.
    Based on the corresponding match, IIS then sends the Request to the defined Executable Path ( aspnet_asapi.dll in the case of ASP.NET Requests ).
    The aspnet_isapi.dll engine processes the Request in an ordered series of events beginning with Application_BeginRequest.


HttpModule.URLRewrite OnBeginRequest ( UrlRewriteModule.vb )
    The Request URL is parsed based on the "/" character
    A Domain Name is constructed using each of the relevant parsed URL segments.

    Examples:

    URL: http://www.domain.com/default.aspx = Domain Name: www.domain.com
    URL: http://209.75.24.131/default.aspx = Domain Name: 209.75.24.131
    URL: http://localhost/DotNetNuke/default.aspx = Domain Name: localhost/DotNetNuke
    URL: http://www.domain.com/virtualdirectory/default.aspx = Domain Name: www.domain.com/virtualdirectory
    URL: http://www.domain.com/directory/default.aspx = Domain Name: www.domain.com/directory

    Using the Domain Name, the application queries the database ( Portals table - PortalAlias field ) to locate a matching record.

    Note: If there are multiple URLs which correspond to the same portal then the PortalAlias field must contain each valid Domain Name in a comma seperated list.

    Example:

    URL: http://localhost/DotNetNuke/default.aspx
    URL: http://MACHINENAME/DotNetNuke/default.aspx
    URL: http://209.32.134.65/DotNetNuke/default.aspx
    PortalAlias: localhost/DotNetNuke,MACHINENAME/DotNetNuke,209.32.134.65/DotNetNuke

    Note: If you are installing the application to a remote server you must modify the PortalAlias field value for the default record in the Portals table according to the rules defined above.

1 个答案:

答案 0 :(得分:0)

我认为您正在尝试在服务器中托管网站,而您没有名为“实验”的域名。 检查问题中给出的最后一行:“注意:如果要将应用程序安装到远程服务器,则必须根据上面定义的规则修改Portals表中默认记录的PortalAlias字段值。” 因此,请检查PortalAlias表中的值并指定域名(localhost可能有效)。