Asp.net 3.5 sp1 路由

发布于 2024-12-10 18:13:57 字数 241 浏览 0 评论 0原文

我正在使用 url 路由功能 ( http://msdn.microsoft.com/en- us/magazine/dd347546.aspx )在我的 asp.net 3.5 sp1 网站中。我想知道这和301重定向一样吗?我想要的是从旧的 asp 页面到新的 aspx 页面的 301 重定向。

I am using url routing feature ( http://msdn.microsoft.com/en-us/magazine/dd347546.aspx ) in my asp.net 3.5 sp1 website. I am wondering that is it same as 301 redirects? what I want is a 301 redirects from my old asp pages to new aspx pages.

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

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

发布评论

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

评论(2

小猫一只 2024-12-17 18:13:57

您指向的路由是到处理请求的页面的映射。看一下这个例子:

RouteTable.Routes.Add(
    "Recipe",
    new Route("recipe/{name}", 
              new RecipeRouteHandler(
                  "~/WebForms/RecipeDisplay.aspx")));

它设置的是一个像 http://mysite.com/recipe/grits 并将其路由到 http://mysite.com/WebForms/RecipeDisplay.aspx?name=grits (或类似)。这是在服务器端完成的,而不是客户端,如 301。

如果您想重定向用户,则需要在服务器中进行映射。

The routing you pointed to is a mapping to a page that handles the request. Look at the example:

RouteTable.Routes.Add(
    "Recipe",
    new Route("recipe/{name}", 
              new RecipeRouteHandler(
                  "~/WebForms/RecipeDisplay.aspx")));

What this sets up is taking a URI like http://mysite.com/recipe/grits and routes it to http://mysite.com/WebForms/RecipeDisplay.aspx?name=grits (or similar). This is done server side, not client side, like a 301.

If you want to redirect a user, you need to map that in the server.

失去的东西太少 2024-12-17 18:13:57

不可以,您不能使用 asp classic 页面重定向的路由功能。
您可以配置 iis 来执行此操作。

No, you cannot use the routing feature for asp classic pages redirect.
You could configure iis to do this.

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