IIS服务器无法加载web应用程序
本文关键字:web 应用程序 加载 服务器 IIS | 更新日期: 2023-09-27 18:10:48
我有一个web应用程序在我的iis和我位于:
C:'inetpub'wwwroot'blabla'Test'Web.aspx
我有一个域名,我浏览到这样的网页:
www.mydomain.com/Test/web.aspx
和我想能够连接页面没有域名:
http://123.123.8.78/blabla/Test/Web.aspx
当我浏览的域名,我得到的页面,但当我尝试与IP地址,我得到:
Server Error in '/' Application.
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'App.Web'.
Source Error:
Line 1: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Web.aspx.cs" Inherits="App.Web" %>
Source File: /blabla/test/web.aspx Line: 1
你知道为什么我找不到那页吗?
blabla是网站指向的目录,这就是为什么/Test/web。aspx作品。你需要安装一个虚拟目录,指向你默认网站上的blabla,以便第二个URL请求工作。仅在URL中指定站点名称不起作用。
默认网站选择目录/blabla/Test/web。但是它用于动态编译的bin目录是默认的web站点的主目录,而不是www.mydomain.com站点。