web.config 中的 IIS 虚拟目录

发布于 2024-07-16 22:45:35 字数 375 浏览 6 评论 0原文

我有一个 IIS 问题,我认为 此博客为我提供了以下修复:

要解决此问题,请右键单击虚拟目录 - 选择属性,然后单击“应用程序”标签和文本框旁边的“创建”。 它会 使用虚拟目录的名称自动创建“应用程序”。 现在可以访问该应用程序了。

但是我无法访问 IIS GUI。 有没有办法通过编辑 web.config 文件来完成同样的事情?

I have a IIS problem that I think this blog gives me a fix for:

To resolve it, Right Click on the virtual directory - select properties and then click on "Create" next to the "Application" Label and the textbox. It will
automatically create the "application" using the virtual directory's name. Now the application can be accessed.

However I don't have access to the IIS GUI. Is there a way to do the same thing by editing the web.config file?

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

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

发布评论

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

评论(4

遇见了你 2024-07-23 22:45:35

恐怕这是不可能的。 将目录配置为应用程序、设置 AppPool 等都是 Web 服务器的责任。 通常,您的网络托管提供商会提供一个控制面板,可让您配置虚拟目录。 如果没有,您需要通过他们的支持渠道联系他们才能完成此操作。

I'm afraid this isn't possible. Configuring a directory as an application, setting up the AppPool, etc is the responsibility of the web server. Typically your web hosting provider will offer a control panel that lets you configure the virtual directories. If not, you'll need to contact them through their support channels to have this done.

披肩女神 2024-07-23 22:45:35

您无法通过 web.config 创建虚拟目录。 如果这是在网络主机上,那么您将需要使用他们为您提供的任何用户界面来创建虚拟目录。

You can not create a virtual directory via your web.config. If this is on a web host then you will need to use whatever user interface they give you to create Virtual Directories.

情深已缘浅 2024-07-23 22:45:35

或者在您有权访问的某些托管网站上,您需要向服务中心或帮助台提交票据,让他们将其制作为应用程序。 他们还需要知道您希望它是哪个版本的 .net 框架。

or on some hosted sites that you're allowed access to, you need to put in a ticket to the service center or help desk to get them make it an app. They will need to know which version of the .net framework you want it to be also.

不美如何 2024-07-23 22:45:35

ImageResizer 项目有一种使用自己的机制创建虚拟文件夹的方法。 不建议用于生产,但它可能适合某些需求。

添加

<add name="VirtualFolder" virtualPath="~/" physicalPath="..\Images" vpp="false "/> 

部分。

http://imageresizing.net/docs/v4/plugins/virtualfolder

The ImageResizer project has a way to create a virtual folder using its own mechanism. It isn't recommended for production, but it may suit some needs.

Add

<add name="VirtualFolder" virtualPath="~/" physicalPath="..\Images" vpp="false "/> 

to the <plugins /> section.

http://imageresizing.net/docs/v4/plugins/virtualfolder

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