将Apache .htaccess规则转换为IIS web.配置为附加.php文件扩展名



我使用下面的.htaccess代码。但是我需要将我的.htaccess文件内容转换为web.config文件。我不知道该怎么做。请查看下面我的.htaccess代码:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php

如何将其转换为web.config?

我们可以把下面的内容放到网上。配置文件

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Rewrite" url="/{R:1}.php" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
<system.web>
<compilation tempDirectory="D:WWWovintours.comtmp" />
</system.web>
</configuration>

相关内容

  • 没有找到相关文章

最新更新