URL 重写一级?
我需要一个仅使用一个参数的重写规则。
<rewrite url="~/(.+).aspx to="www.mysite.com/results?search=$1" />
问题是我现在无法访问我的 default.aspx 页面,并且基本上所有请求都是一个文件深度 - 图像、样式表等。
我猜有一些可以编写的异常规则?
另外,我可以即时进行字符替换,例如用“+”替换空格,用破折号替换下划线等吗?
谢谢。
I need a rewrite rule that uses only one parameter.
<rewrite url="~/(.+).aspx to="www.mysite.com/results?search=$1" />
The issue with this is that I now cannot access my default.aspx page, and basically all requests that are one file deep - images, stylesheets, etc.
I'm guessing there are some exception rules that can be written?
Also, can I on-the-fly do character replacing such as replacing spaces with "+", underscores with dashes, etc?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,这与规则无关,您需要配置 iis 以使用 asp.net 处理所有文件请求。
在这里,你一步一步。
No it's not about a rule, you need to configure iis to process with asp.net all file requests.
here you are step by step.