码迷,mamicode.com
首页 > Web开发 > 详细

Yii IIS8下使用伪静态【Url Rewrite】去掉index.php

时间:2017-07-28 12:15:24      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:stop   out   ebs   dex   class   request   ati   web   log   

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <directoryBrowse enabled="false" />
      <rewrite>
        <rules>
          <rule name="Hide Yii Index" stopProcessing="true">
            <match url="." ignoreCase="false" />
            <conditions>
            <add input="{REQUEST_FILENAME}" matchType="IsFile" 
                  ignoreCase="false" negate="true" />
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" 
                  ignoreCase="false" negate="true" />
            </conditions>
            <action type="Rewrite" url="index.php" appendQueryString="true" />
          </rule> 
        </rules>
      </rewrite>
  </system.webServer>
</configuration>

转自:http://ju.outofmemory.cn/entry/178850

Yii IIS8下使用伪静态【Url Rewrite】去掉index.php

标签:stop   out   ebs   dex   class   request   ati   web   log   

原文地址:http://www.cnblogs.com/luotingliang/p/7249495.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!