我正在尝试重新编写将更改此 URL 的 URL:
http://domain.com/us--texas--austin--article-category--article-name
至
http://domain.com/us/texas/austin/article-category/article-name
所以我想用“/”替换每个-(2个破折号)
web.config 会是什么样子?
<rule name="URL3" stopProcessing="true">
<match url="^([_0-9a-z-]+)--([_0-9a-z-]+)--([_0-9a-z-]+)--([_0-9a-z-]+)" ignoreCase="true" />
<action type="Redirect" url="{R:1}/{R:2}/{R:3}" redirectType="Temporary" />
</rule>
提前致谢。