我正在使用 apache mod rewrite 并且我有一个 .htaccess rewrite 语句。我想改用 IIS 服务器,想知道是否有人可以就如何将现有的 .htaccess 语句转换为 iis web.config 给我建议。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [PT,L]
</IfModule>
专家建议表示赞赏。