博客列表 >url重写,省略index.php

url重写,省略index.php

coolperJie
coolperJie原创
2020年03月06日 13:05:521476浏览

在做PHP系统的时候,在win server 2012的iis下面使用会用到url重写,需要省略index.php,所以记录这个重写规则.将以下代码保存在web.config文件里并放在网站根目录,即可实现省略index.php  

<?xml version="1.0" encoding="UTF-8"?><configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="WPurls" enabled="true" stopProcessing="true">
          <match url="^(.*)$" />
          <conditions logicalGrouping="MatchAll">
            <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}" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer></configuration>


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议