有人可以告诉我如何将 apache iis7 mod_rewrite .htaccess 文件转换为 MS Url Rewriter 中的等效 web.config 吗?
这是我拥有的 .htaccess 文件:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /index.php?url=$1 [QSA,L]
</IfModule>