URL 重写和 IIS 配置

发布于 2024-12-03 09:44:40 字数 610 浏览 2 评论 0原文

我的环境是 VS2010 和 windows 7。我正在使用路由进行 url 重写,以实现无扩展重写。一切正常,但我没有配置 IIS,也没有在 web.config 文件中写入任何内容以进行 url 重写。一切正常。

所以我想知道,当我将我的项目托管到 orcsweb 时,他们需要配置 IIS 还是我需要在 web.config 中编写任何内容,或者我是否需要告诉他们我正在使用路由,以便他们应该使用 IIS7 而不是 IIS6 。

我的 url 重写示例代码

 void Application_Start(object sender, EventArgs e)
    {
        // Code that runs on application startup
        RouteTable.Routes.MapPageRoute("Source", "Source/{ID}/{Title}", "~/Source.aspx");
        RouteTable.Routes.MapPageRoute("Source1", "MyData/Source/{ID}/{Title}", "~/MyData/Source.aspx");
    }

请详细讨论......谢谢

My environment is VS2010 and windows 7. i am doing url rewrite with routing for extension less rewrite. everything works fine but i did not configure my IIS and also did not write nothing in my web.config file for url rewrite. everything is working fine.

so i want to know that when i host my project to orcsweb then they need to configure IIS or do i need to write anything in web.config or should i need to tell them that i am using routing so they should use IIS7 instead of IIS6.

my sample code for url rewrite like

 void Application_Start(object sender, EventArgs e)
    {
        // Code that runs on application startup
        RouteTable.Routes.MapPageRoute("Source", "Source/{ID}/{Title}", "~/Source.aspx");
        RouteTable.Routes.MapPageRoute("Source1", "MyData/Source/{ID}/{Title}", "~/MyData/Source.aspx");
    }

please discuss in detail.......thanks

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

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

发布评论

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

评论(1

把梦留给海 2024-12-10 09:44:40

无论如何,如果他们升级到 IIS7,那就太好了,因为它对 .NET 有更好的支持。

无论如何,如果在计算机上安装并配置了 .NET Framework 3.5 SP1(或更高版本),路由应该可以正常工作。无需额外配置。

It is nice if they upgrade to IIS7 anyway, since it has much better support for .NET

Anyway, if .NET framework 3.5 SP1 (or highier) is installed and configured on machine, Routing should simply work. No additional configuration is needed.

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