apache下的伪静态如何转换成iis下的伪静态?因为apache是.htaccess 而iis是httpd.ini  如果直接改文件名的话,并不行,如下面的apache下的伪静态代码?(请说下转换方法)
# Destoon B2B Rewrite Rules
RewriteEngine On
RewriteRule list-(\d+)\.html$ index\.php\?c=list&m=index&parent_cid=$1
RewriteRule list-(\d+)-(\d+)\.html$ index\.php\?c=list&m=index&parent_cid=$1&page=$2
RewriteRule list-(\d+)-(\d+)-(\d+)\.html$ index\.php\?c=list&m=index&parent_cid=$1&sort=$2&page=$3
RewriteRule list-(\d+)-(\d+)\.html$ index\.php\?c=list&m=index&parent_cid=$1&sort=$2RewriteRule show-(\d+)\.html$ index\.php\?c=show&m=index&num_iids=$1RewriteRule images\/([a-zA-Z\d=]+)\.jpg  go.php

解决方案 »

  1.   

    我也要请教这个问题。。
    apache 规则如下:Options All -Indexes
    DirectoryIndex index.html index.php
    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteBase /cqxr
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond $1 !^(visit|im|min|robots\.txt)
    RewriteRule ^(.*)$ index.php/$1 [QSA,L]
    </IfModule>
      

  2.   

    apache 下用 httpd.conf 文件 也行,,,也有用 .htaccess 文件的,实在是搞不懂。