如何将.htaccess转换为web.config文件?

问题描述 投票:-2回答:1

我想把这个文件改成web.config文件,但我失败了。

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php [PT,L]
apache iis
1个回答
0
投票

要将.htaccess规则转换为web.config,首先你需要在iis中安装URL重写模块,你可以从以下链接下载。

https:/www.iis.netdownloadsmicrosofturl-rewrite

然后在iis中导入htaccess规则后。

1)打开iis管理器。

2)双击URL重写模块。

3)在操作面板中点击导入规则。

enter image description here

4)在重写规则框中粘贴你的规则:

5)点击应用。

enter image description here

https:/docs.microsoft.comen-usiisextensionsurl-rewrite-moduleimporting-apache-modrewrite-rules。

© www.soinside.com 2019 - 2024. All rights reserved.