IIS下让php支持path_info伪静态的办法

前端之家收集整理的这篇文章主要介绍了IIS下让php支持path_info伪静态的办法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在网站根目录建一个文件web.config

输入一下内容

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
 <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>
    </system.webServer>
</configuration>




当前前提是iis已经支持url rewrite

原文链接:https://www.f2er.com/windows/566664.html

猜你在找的Windows相关文章