URL 重写 ASP.NET ( UrlRewriter.net )

发布于 2024-08-11 09:15:25 字数 551 浏览 6 评论 0原文

重写了以下 URL

/category/games/21

好的,我们使用 UrlRewriter.net使用以下表达式

<rewrite url="~/Category/(.+)/(.+)" to="~/category.aspx?CatId=$2" />

。但是谷歌可以附加以下内容,

/category/games/21?gclid=clickIdHere

这需要重写为,

/category.aspc?CatId=21&gclid=clickIdHere

任何人都可以帮助建议一个适用于上述内容的表达式吗?

我想像...

<rewrite url="~/Category/(.+)/(.+)?gclid=(.+)" to="~/category.aspx?
CatId=$2&gclid=$3" />

Ok we have the following re-written URL using UrlRewriter.net

/category/games/21

using the following expression.

<rewrite url="~/Category/(.+)/(.+)" to="~/category.aspx?CatId=$2" />

however google can attach the following,

/category/games/21?gclid=clickIdHere

this would need to be re-written to,

/category.aspc?CatId=21&gclid=clickIdHere

Can anyone help suggest an expression that will work with the above?

I suppose somthing like...

<rewrite url="~/Category/(.+)/(.+)?gclid=(.+)" to="~/category.aspx?
CatId=$2&gclid=$3" />

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

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

发布评论

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

评论(1

纵山崖 2024-08-18 09:15:25

应该像

<add name="category" virtualUrl="^~/Category.aspx/(.*)/(.*)" destinationUrl="~/Category.aspx?CatID=$1&gclid=$2" ignoreCase="true" rewriteUrlParameter="ExcludeFromClientQueryString" />

should be like

<add name="category" virtualUrl="^~/Category.aspx/(.*)/(.*)" destinationUrl="~/Category.aspx?CatID=$1&gclid=$2" ignoreCase="true" rewriteUrlParameter="ExcludeFromClientQueryString" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文