当前位置:Gxlcms > PHP教程 > iis7.5php伪静态代码实例

iis7.5php伪静态代码实例

时间:2021-07-01 10:21:17 帮助过:29人阅读

本文主要和大家分享iis7.5 php伪静态代码实例,希望大家对php伪静态有一个跟清晰的认识。

保存到网站跟目录 文件名 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>
        <directoryBrowse enabled="false" />
                <security>
          <requestFiltering allowDoubleEscaping="True" />
        </security>
        <defaultDocument>
            <files>
                <clear />
                <add value="index.php" />
                <add value="Default.htm" />
                <add value="Default.asp" />
                <add value="index.htm" />
                <add value="index.html" />
                <add value="iisstart.htm" />
            </files>
        </defaultDocument>
    </system.webServer>
    
</configuration>

相关推荐:

关于php伪静态配置的方法详解

php伪静态技术使用方法汇总

php伪静态

以上就是iis7.5 php伪静态代码实例的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行