1 Star 0 Fork 5

frank/FrameWorks

forked from 实玮网络/FrameWorks 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
web.config 2.44 KB
一键复制 编辑 原始数据 按行查看 历史
实玮网络 提交于 2016-07-08 16:51 . v0.9
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="Rewrite requested file/folder to files/*" stopProcessing="true">
<match url="^media/(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="None" />
</rule>
<rule name="ignore" stopProcessing="true">
<match url="^" ignoreCase="false" />
<conditions logicalGrouping="MatchAny" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" />
</conditions>
<action type="None" />
</rule>
<rule name="Rewrite requested file/folder to tools/index.php" stopProcessing="true">
<match url="^tools/(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="tools/index.php" appendQueryString="true" />
</rule>
<rule name="Rewrite requested file/folder to admin/index.php" stopProcessing="true">
<match url="^admin/(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="admin/index.php" appendQueryString="true" />
</rule>
<rule name="Rewrite requested file/folder to admin/index.php" stopProcessing="true">
<match url="^api/(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="api/index.php" appendQueryString="true" />
</rule>
<rule name="Rewrite requested file/folder to index.php" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="index.php" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/noikiy/FrameWorks.git
[email protected]:noikiy/FrameWorks.git
noikiy
FrameWorks
FrameWorks
master

搜索帮助