当前位置: 代码迷 >> ASP >> IIS 伪静态规则如何写
  详细解决方案

IIS 伪静态规则如何写

热度:91   发布时间:2012-06-02 14:16:14.0
IIS 伪静态规则怎么写?
IIS 伪静态规则怎么写?
我的路径,是index.asp ,about.asp, about.asp?id=12, about.asp?id=13 ,about.asp?id=14,,,news.asp,,,product.asp, 连接如,showproduct.asp?id=12,,,shownews.asp?id=13,,,,这样的伪规则应该怎么写啊?
还有页面翻页怎么办?

------解决方案--------------------
给一个例子,其它对照着写

RewriteRule (.*)/about-([0-9]*).html $1/about.asp?id=$2
------解决方案--------------------
一类一类的写
about_12.html
^about_(\d+)$ about.asp?id=$1

shownews_12_1.html --------- 12是id 1是page
^shownews_(\d+)_(\d+)$ shownews.asp?id=$1&page=$2




  相关解决方案