我想把这个文件改成web.config文件,但我失败了。
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php [PT,L]
要将.htaccess规则转换为web.config,首先你需要在iis中安装URL重写模块,你可以从以下链接下载。
https:/www.iis.netdownloadsmicrosofturl-rewrite
然后在iis中导入htaccess规则后。
1)打开iis管理器。
2)双击URL重写模块。
3)在操作面板中点击导入规则。
4)在重写规则框中粘贴你的规则:
5)点击应用。
https:/docs.microsoft.comen-usiisextensionsurl-rewrite-moduleimporting-apache-modrewrite-rules。