Blogger Information
Blog 34
fans 1
comment 0
visits 36115
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
url重写,省略index.php
coolperJie
Original
1475 people have browsed it

在做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>


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments