0

我当前的重写器运行良好,但是当用户在 facebook 和 facebook 上添加一个 URL 时,它无法再加载。

这是我的表达:

<rewrite url="~/hinh-anh/(.+)-(.+)" to="~/Content.aspx?ContentID=$2"/>

这运作良好:

http://www.funbook.vn/hinh-anh/pho-cu-reu-phong-205

此网址无效:

http://www.funbook.vn/hinh-anh/pho-cu-reu-phong-205?fb_comment_id=fbc_10151011439516616_22968658_10151011472976616#f17f94926c

请帮助我,我是正则表达式的菜鸟。

预先感谢!!

编辑:

最后我找到了解决方案:

<rewrite url="~/hinh-anh/([A-Za-z\-]*)([\d]+)" to="~/Content.aspx?ContentID=$2"/>
4

2 回答 2

1

试试这个:

<rewrite url="~/hinh-anh/(.+)-(.+).*" to="~/Content.aspx?ContentID=$2"/>
于 2012-08-23T10:32:49.237 回答
0

最后我找到了解决方案:

`<rewrite url="~/hinh-anh/([A-Za-z\-]*)([\d]+)" to="~/Content.aspx?ContentID=$2"/>`
于 2012-08-24T04:04:03.027 回答