【备忘】IIS目录结尾自动加斜线

吐槽/反馈/建议:我的咸鱼心  爱发电-@wdssmq

理论上只要在你的规则中添加粗体的部分就可以的。注:ISAPI Rewrite 3.X规则未实测。

关于重写/重定向的其他注意事项,比如不带www的域名重写向、1.8 Z-Blog升级后的RSS地址变更……请参考之前的相关文章:

https://www.wdssmq.com/tags/301

↑↑↑ 也算是个演示地址吧。

IIS6+ISAPI Rewrite 2.X

[ISAPI_Rewrite]

RewriteRule /(?!zb_)([^\.]+[^/]) /$1/ [RP,L]
RewriteRule /default_([0-9]+)\.html /catalog\.asp\?page=$1
RewriteRule /category/(?!zb_)(.*)_([0-9]+)/ /catalog\.asp\?cate=$1&page=$2
RewriteRule /category/(?!zb_)(.*)/ /catalog\.asp\?cate=$1
RewriteRule /author-([0-9]+)_([0-9]+).html /catalog\.asp\?auth=$1&page=$2
RewriteRule /author-([0-9]+).html /catalog\.asp\?auth=$1
RewriteRule /tags-([0-9]+)_([0-9]+).html /catalog\.asp\?tags=$1&page=$2
RewriteRule /tags-([0-9]+).html /catalog\.asp\?tags=$1
RewriteRule /post/([0-9\-]+)_([0-9]+)/ /catalog\.asp\?date=$1&page=$2
RewriteRule /post/([0-9\-]+)/ /catalog\.asp\?date=$1
RewriteRule /post/(?!zb_)(.*)/ /view\.asp\?id=$1
RewriteRule /(?!zb_)(.*)/ /view\.asp\?id=$1

IIS6+ISAPI Rewrite 3.X

#ISAPI Rewrite 3
RewriteBase /
RewriteRule ^(?!zb_)([^\.]+[^/])$ /$1/ [NU,R=301]
RewriteRule ^default_([0-9]+)\.html$ /catalog.asp\?page=$1
RewriteRule ^category/(?!zb_)(.*)_([0-9]+)/$ /catalog.asp\?cate=$1&page=$2 [NU]
RewriteRule ^category/(?!zb_)(.*)/$ /catalog.asp\?cate=$1 [NU]
RewriteRule ^author-([0-9]+)_([0-9]+).html$ /catalog.asp\?auth=$1&page=$2 [NU]
RewriteRule ^author-([0-9]+).html$ /catalog.asp\?auth=$1 [NU]
RewriteRule ^tags-([0-9]+)_([0-9]+).html$ /catalog.asp\?tags=$1&page=$2 [NU]
RewriteRule ^tags-([0-9]+).html$ /catalog.asp\?tags=$1 [NU]
RewriteRule ^post/([0-9\-]+)_([0-9]+)/$ /catalog.asp\?date=$1&page=$2 [NU]
RewriteRule ^post/([0-9\-]+)/$ /catalog.asp\?date=$1 [NU]
RewriteRule ^post/(?!zb_)(.*)/$ /view.asp\?id=$1 [NU]
RewriteRule ^(?!zb_)(.*)/$ /view.asp\?id=$1 [NU]

IIS7、7.5、8+Url Rewrite

 <?xml version="1.0" encoding="UTF-8"?>  
 <configuration>  
  <system.webServer>  
  <rewrite>  
  <rules>  
  **<rule name="//" stopProcessing="true">  
  <match url="^(?!zb\_)\[^\\.\]+\[^/\]$"/>  
  <action type="Redirect" redirectType="Permanent" url="{R:0}/"/>  
  </rule>**  
  <rule name="Imported Rule Default+Page" stopProcessing="true">  
  <match url="^default\_(\[0-9\]+)\\.html$" ignoreCase="false" />  
  <action type="Rewrite" url="catalog.asp?page={R:1}" />  
  </rule>  
  <rule name="Imported Rule Category+Page" stopProcessing="true">  
  <match url="^category-(\[0-9\]+)\_(\[0-9\]+).html$" ignoreCase="false" />  
  <action type="Rewrite" url="catalog.asp?cate={R:1}&amp;page={R:2}" />  
  </rule>  
  <rule name="Imported Rule Category" stopProcessing="true">  
  <match url="^category-(\[0-9\]+).html$" ignoreCase="false" />  
  <action type="Rewrite" url="catalog.asp?cate={R:1}" />  
  </rule>  
  <rule name="Imported Rule Author+Page" stopProcessing="true">  
  <match url="^author-(\[0-9\]+)\_(\[0-9\]+).html$" ignoreCase="false" />  
  <action type="Rewrite" url="catalog.asp?auth={R:1}&amp;page={R:2}" />  
  </rule>  
  <rule name="Imported Rule Author" stopProcessing="true">  
  <match url="^author-(\[0-9\]+).html$" ignoreCase="false" />  
  <action type="Rewrite" url="catalog.asp?auth={R:1}" />  
  </rule>  
  <rule name="Imported Rule Tags+Page" stopProcessing="true">  
  <match url="^tags-(\[0-9\]+)\_(\[0-9\]+).html$" ignoreCase="false" />  
  <action type="Rewrite" url="catalog.asp?tags={R:1}&amp;page={R:2}" />  
  </rule>  
  <rule name="Imported Rule Tags" stopProcessing="true">  
  <match url="^tags-(\[0-9\]+).html$" ignoreCase="false" />  
  <action type="Rewrite" url="catalog.asp?tags={R:1}" />  
  </rule>  
  <rule name="Imported Rule Date+Page" stopProcessing="true">  
  <match url="^date-(\[0-9\\-\]+)\_(\[0-9\]+).html$" ignoreCase="false" />  
  <action type="Rewrite" url="catalog.asp?date={R:1}&amp;page={R:2}" />  
  </rule>  
  <rule name="Imported Rule Date" stopProcessing="true">  
  <match url="^date-(\[0-9\\-\]+).html$" ignoreCase="false" />  
  <action type="Rewrite" url="catalog.asp?date={R:1}" />  
  </rule>  
  <rule name="Imported Rule Article" stopProcessing="true">  
  <match url="^post/(?!zb\_)(.\*).html$" ignoreCase="false" />  
  <action type="Rewrite" url="view.asp?id={R:1}" />  
  </rule>  
  <rule name="Imported Rule Page" stopProcessing="true">  
  <match url="^(?!zb\_)(.\*).html$" ignoreCase="false" />  
  <action type="Rewrite" url="view.asp?id={R:1}" />  
  </rule>  
  </rules>  
  </rewrite>  
  </system.webServer>  
 </configuration>

爱发电

本文标题:《【备忘】IIS目录结尾自动加斜线》作者:沉冰浮水
原文链接:https://www.wdssmq.com/post/20141208340.html
特别注明外均为原创,转载请注明。

分享到微信

扫描二维码

可在微信查看或分享至朋友圈。

相关文章

沉冰浮水 沉冰浮水 发布于 2014-12-12 16:21:49  
https://www.wdssmq.com
[godsay4-不明觉厉]
回复
沉冰浮水 沉冰浮水 发布于 2014-12-12 16:21:30  
https://www.wdssmq.com
[godsay2-人艰不拆]
回复
发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

网站分类

  • 订阅本站的 RSS 2.0 新闻聚合

搜索

本周旧文

近期观影记录:超级马里奥,死侍与金刚狼。。

搬家也告一段落,虽然搬过来的东西还得归置,新衣柜虽说已经散俩月味儿了,但还是不想放衣服进去。

要不我每年汇总整理一次??碎雨集_沉冰浮水_第1页

所以,不带这条的话,2024 年目前只发了 13 条嘟????

VSCode 内 git 操作卡住的时候没办法主动取消一直是个痛点,一般都是推送或拉取,今天连提交都卡了。。

又一个夏天过去了,所以今年也没买防水鞋套;然后天凉了,为了应对踢被子买了睡袋,不知道 1.2 米会不会略窄。。

《五至七时的克莱奥》,2018 年 6 月加入列表,21 年 11 月底发现 B 站上线了这部,直到前几天才看完,还是分两次看的。。接下来有五项是 2019 年的,都是电影 —— 略长的待办列表。。

有用程序自动抓取自己带 tag 的嘟,然后按年备份后从线上删除;刚发现去年的数据有备份但是没删线上??和本地数据对比后发现线上的还少一条,Why??

本质上,每个人需要的是「让自己面临的问题得到解决」的能力。。

这又涉及到直接能力和间接能力,,缺乏直接能力很正常,视情况可以通过学习来掌握直接能力,或者「请」有直接能力的人来帮自己解决。。

缺乏间接能力的情况是真没救,尤其是对「这是**我自己**面临的问题」这一前提没有明确认知的人。。

其实,在认知意义上,焦虑时我知道这种情绪对应「焦虑」这个文法词汇,此外还有「压抑」「悲伤」等等,然而「抑郁」其实是个我认知体系外的词,虽然经常一些情绪感受我找不到对应的语言词汇来表述,却也只能将其实表述为「找不到对应的语言词汇来表述」的某些感受。。

爱发电支持者

最新留言

友情链接