29 Star 98 Fork 37

phpok / phpok

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
web.config 854 Bytes
一键复制 编辑 原始数据 按行查看 历史
phpok 提交于 2023-03-09 23:02 . 更新到 6.4 版本
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument>
<files>
<clear />
<add value="index.php" />
</files>
</defaultDocument>
<rewrite>
<rules>
<rule name="PHPOK" stopProcessing="true">
<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/{R:0}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
PHP
1
https://gitee.com/phpok/phpok.git
git@gitee.com:phpok/phpok.git
phpok
phpok
phpok
master

搜索帮助