Asp.net MVC 自定义路由与 SEO

发布于 2024-09-25 20:17:35 字数 586 浏览 3 评论 0原文

routes.MapRoute(
"Route",
"{id}/{*seostuff}",
new {controller = "Home", action="Index", seo = UrlParameter.Optional});

这将允许您映射网址,例如 http ://www.somesite.com/11/whatever/goes-here/will-be-whatever-you/want

这是原始帖子Asp.net MVC 自定义路由

大家好!

-我想知道这是如何在控制器中编写代码?我有一个像 Product/Phone/i-phone.aspx 这样的静态页面,它位于产品下,它有一个文件夹电话...大家有什么建议吗?非常感谢.. 。

routes.MapRoute(
"Route",
"{id}/{*seostuff}",
new {controller = "Home", action="Index", seo = UrlParameter.Optional});

that will allow you to map urls such as http://www.somesite.com/11/whatever/goes-here/will-be-whatever-you/want

Here is the original post Asp.net MVC custom routing

Hi guys!

-what I want to know is how can this be code in controller? I have a static page like this Product/Phone/i-phone.aspx which is under the product it has a folder phone.. . any suggestion guys? thank you very much.. .

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

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

发布评论

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

评论(1

魂归处 2024-10-02 20:17:35

您可以定义您所描述的路线...

        routes.MapRoute(
            "Route", // ShopsToRent/0/B31 5EH/9/0/0/0/0/0
            "{id}/{seo}", // URL with parameters
            new
            {
                controller = "ControllerName",
                action = "ActionName",
                page = UrlParameter.Optional,
                title = ""
            } // Parameter defaults
        );

我个人更喜欢在网址开头有一个关键字,因为这会给您一个额外的关键字(例如 www.keywords.com/keywords )并允许将来添加到该网站...

        routes.MapRoute(
            "Route", // ShopsToRent/0/B31 5EH/9/0/0/0/0/0
            "KEYWORD/{id}/{seo}", // URL with parameters
            new
            {
                controller = "ControllerName",
                action = "ActionName",
                page = UrlParameter.Optional,
                title = ""
            } // Parameter defaults
        );

You can define the route you have described...

        routes.MapRoute(
            "Route", // ShopsToRent/0/B31 5EH/9/0/0/0/0/0
            "{id}/{seo}", // URL with parameters
            new
            {
                controller = "ControllerName",
                action = "ActionName",
                page = UrlParameter.Optional,
                title = ""
            } // Parameter defaults
        );

I personally prefer to have a Keyword at the start of the url as this gives you an additional keyword (eg www.keywords.com/keywords )and allows future additions to the site...

        routes.MapRoute(
            "Route", // ShopsToRent/0/B31 5EH/9/0/0/0/0/0
            "KEYWORD/{id}/{seo}", // URL with parameters
            new
            {
                controller = "ControllerName",
                action = "ActionName",
                page = UrlParameter.Optional,
                title = ""
            } // Parameter defaults
        );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文