URL 目录 IIS 6
快速提问,可能是理所当然的。这是一个 URL:
wwww.yahoo.com/index.aspx/somefile.aspx
在构建目录等过程中,我不明白上述 URL 是如何实现的,因为主域应该停在 index.aspx 处。我的意思是服务器上没有名为index.aspx 的文件夹。
上面的链接显然不起作用,我正在使用我网站上的一个示例,其中有一个类似上面的链接。我正在运行 .Net 和 IIS 6(如果有帮助的话)。
Quick question, possibly a no brainer. How is this a URL:
wwww.yahoo.com/index.aspx/somefile.aspx
In the construction of directories and such I don't get how the above URL is possible since the main domain is supposed to stop at index.aspx. I mean there is no folder on the server named index.aspx.
The link above obviously doesn't work, I'm using an example from my site which has a link like above. I'm running .Net and IIS 6 if that helps.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可以使用 Url 重写来完成。
this can be accomplished use Url rewrites.
您在 Web 项目中创建一个名为
index.aspx
的文件夹,然后向该文件夹添加一个名为somefile.aspx
的页面。工作得很好。You create a folder in your web project called
index.aspx
and then add a page to this folder calledsomefile.aspx
. Works perfectly well.