我正在将 PHP 应用程序从 Apache 移动到 IIS 服务器。我正在尝试翻译以下 .htaccess 规则:
RewriteEngine On
RewriteRule ^(.*)$ public/$1?%{QUERY_STRING} [QSA,L]
它只是将所有请求(以及查询字符串)重定向到公共子目录。
我在 web.config 文件中尝试了类似以下的内容-
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Root Hit Redirect" stopProcessing="true">
<match url="^$" />
<action type="Redirect" url="/public/index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
但它一直陷入重定向循环。在这种情况下,正确的 web.config 规则应该是什么?