mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-10 17:42:50 +00:00
13 lines
412 B
Plaintext
13 lines
412 B
Plaintext
<rewrite>
|
|
<rules>
|
|
<rule name="OrgPage" stopProcessing="true">
|
|
<match url="^(.*)$" />
|
|
<conditions logicalGrouping="MatchAll">
|
|
<add input="{HTTP_HOST}" pattern="^(.*)$" />
|
|
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
|
|
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
|
|
</conditions>
|
|
<action type="Rewrite" url="index.php/{R:1}" />
|
|
</rule>
|
|
</rules>
|
|
</rewrite> |