Я пытаюсь переписать URL с помощью web.config, но я ничего об этом не знаю, пожалуйста, помогите мне?Ниже приведен мой код web.config:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="xyz" patternSyntax="Wildcard">
<match url="*"/>
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
</conditions>
<action type="Rewrite" url="index.php"/>
</rule></rules>
</rewrite>
</system.webServer>
</configuration>
У меня есть URL-адрес: http://www.example.com/?file_name=manage_test
Я хочу, чтобы он был таким: http://www.example.com/manage_test ИЛИ http://www.example.com/manage_test.html
Как я могу выполнить это действие?
Заранее спасибо.