Asp.net 3.5 sp1 路由
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您指向的路由是到处理请求的页面的映射。看一下这个例子:
它设置的是一个像 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:
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.
不可以,您不能使用 asp classic 页面重定向的路由功能。
您可以配置 iis 来执行此操作。
No, you cannot use the routing feature for asp classic pages redirect.
You could configure iis to do this.