搜虎精品社区

标题: 求高手帮忙把httpd.ini的正则转成web.config [打印本页]

作者: 海风心情    时间: 2010-1-17 11:37
标题: 求高手帮忙把httpd.ini的正则转成web.config
换了万网的虚拟主机,之前的httpd.ini使用不了,需要转换成web.config才可以使用,我对正则不懂,希望有高手能帮忙转一下。
httpd.ini
  1. [ISAPI_Rewrite]

  2. # 3600 = 1 hour
  3. CacheClockRate 3600
  4. RepeatLimit 32

  5. #技术资料分页            
  6. RewriteRule /article_(\d+)\.html /article\.html\?page=$1 [N,I]
  7. #技术资料详细         
  8. RewriteRule /articleshow_(\d+)\.html /news_show\.html\?id=$1 [N,I]
  9. #工程案例分页            
  10. RewriteRule /case_(\d+)\.html /case\.html\?page=$1 [N,I]
  11. #工程案例分类            
  12. RewriteRule /casetyle_(\d+)\.html /case\.html\?id=$1 [N,I]
  13. #工程案例分类分页            
  14. RewriteRule /casetyle_(\d+)\_(\d+)\.html /case\.html\?id=$1&page=$2 [N,I]
  15. #工程案例详细         
  16. RewriteRule /caseshow_(\d+)\.html /news_show\.html\?id=$1 [N,I]
  17. #新闻分页            
  18. RewriteRule /news_(\d+)\.html /news\.html\?page=$1 [N,I]
  19. #新闻详细         
  20. RewriteRule /newsshow_(\d+)\.html /news_show\.html\?id=$1 [N,I]
  21. #产品         
  22. RewriteRule /products_(\d+)\.html /products\.html\?page=$1 [N,I]  
  23. #产品详细           
  24. RewriteRule /ProductShow_(\d+)\.html /Products_Show\.html\?id=$1 [N,I]
  25. #产品大分类     
  26. RewriteRule /Product_b(\d+)\.html /products_list\.asp\?bigclass=$1 [N,I]
  27. #产品大分类分页     
  28. RewriteRule /Product_b(\d+)_(\d+)\.html /products_list\.asp\?bigclass=$1&page=$2 [N,I]
  29. #产品小分类      
  30. RewriteRule /Product_s(\d+)\.html /products_list\.asp\?smallclass=$1 [N,I]   
  31. #产品小分类 分页     
  32. RewriteRule /Product_s(\d+)_(\d+)\.html /products_list\.asp\?smallclass=$1&page=$2 [N,I]
复制代码

万网提供的web.config范例
  1. <?xml version="1.0"?>
  2. <configuration>
  3.     <configSections>
  4.         <section
  5.             name="rewriter"
  6.             type="HiChina.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, HiChina.UrlRewriter" />
  7.     </configSections>
  8.     <appSettings/>
  9.     <connectionStrings/>
  10.     <system.web>
  11.         <httpModules>
  12.             <add
  13.                 type="HiChina.UrlRewriter.RewriterHttpModule, HiChina.UrlRewriter"
  14.                 name="UrlRewriter" />
  15.         </httpModules>   
  16.     </system.web>
  17.    
  18.     <rewriter>
  19.         <rewrite url="^(/.+(\.gif|\.png|\.jpg|\.ico|\.pdf|\.css|\.js)(\?.+)?)$" to="$1" processing="stop" />
  20.         <rewrite url="~/lmh$" to="~/testurl/Users.aspx?user=lmh" processing="stop" />
  21.         <rewrite url="~/tags/(.+)" to="~/testurl/tagcloud.aspx?tag=$1"  processing="stop"/>
  22.         <rewrite url="~/article-(.*)-(.*)-(.*).html"  to="~/testurl/article.asp?id=$1&sid=$2&page=$3"  processing="stop"/>
  23.         <rewrite url="^~/mypage(\?.+)?$" to="~/index.htm$1" processing="stop" />
  24.     </rewriter>   
  25. </configuration>
复制代码


有一个帖子说IIS7可以转换:http://www.cnblogs.com/lixyvip/archive/2009/03/02.html,我的电脑没装有这个工具,也没使用过,看不懂E文!
在这里,我先谢过各位朋友了!

httpd.ini和web.config.rar

946 Bytes, 下载次数: 1


作者: stuv731    时间: 2010-1-17 23:52
提示: 作者被禁止或删除 内容自动屏蔽




欢迎光临 搜虎精品社区 (https://souho.net/) Powered by Discuz! X3.2