Home > php教程 > php手册 > body text

IIS7.5 去除 index.php web.config配置文件

WBOY
Release: 2016-06-06 19:44:12
Original
1450 people have browsed it

论坛里有很多关于去掉index.php的教程和代码,但是悲剧的是都是自己能配置服务器, 并且服务器要么是 Apache,就是IIS 6- 。。。 没有IIS7.5下是如何配置的。 我想大家应该有很多都是用的服务商提供的空间,有些文件是没法修改的。 有一次在群里看到一个人吵

论坛里有很多关于去掉index.php的教程和代码,但是悲剧的是都是自己能配置服务器,
并且服务器要么是 Apache,就是IIS 6- 。。。
没有IIS7.5下是如何配置的。

我想大家应该有很多都是用的服务商提供的空间,有些文件是没法修改的。
有一次在群里看到一个人吵着服务商垃圾,不让他修改httpd.conf文件,
说什么你让我改我就能伪静态了IIS7.5 去除 index.php web.config配置文件...还说服务器垃圾,不支持URL Rwrite。

其实IIS7.5是支持的,并且可配置程度及灵活性是相当高的,
只要web.config的规则配置你懂得,其实你是可以完全无视服务商的IIS7.5 去除 index.php web.config配置文件,这个你懂得...
什么404,500etc. 过滤文件,限制访问之类的都不算个事。

从这个角度来看,很多人由于对Web.config的不了解,以及对所看到的教程的盲目崇拜,才会闹出上面那样的尴尬。

不说了,直接上代码:
web.config

XML复制代码

 
version="1.0" encoding="UTF-8"?>
>
   >
   enabled="false" />
   >
      >
      name="OrgPage" stopProcessing="true"
       url="^(.*)$" />
       logicalGrouping="MatchAll"
          input="{HTTP_HOST}" pattern="^(.*)$" /> 
          input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> 
          input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> 
       

         type="Rewrite" url="index.php/{R:1}" /> 
>
>
    
>
    >
            >
                />
                value="index.asp" />
                value="index.aspx" />
                value="index.php" />
                value="index.html" />
                value="Default.htm" />
                value="Default.asp" />
                value="index.htm" />
                value="Default.aspx" />
                value="index.shtml" />
            
>
        
>
        >
            statusCode="500" subStatusCode="1" prefixLanguageFilePath=""path="www.QFisH.net" 
responseMode="ExecuteURL" />
            statusCode="404" subStatusCode="1" prefixLanguageFilePath="" path="qfish.me"responseMode="Redirect" />
        
>
    
>
>
 

复制代码

如果只是需要去掉index.php, 那直接把下面这段代码加到  中间就可以了。

XML复制代码

 
>

name="OrgPage" stopProcessing="true"
url="^(.*)$" />
logicalGrouping="MatchAll"
input="{HTTP_HOST}" pattern="^(.*)$" /> 
input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> 
input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> 
>
type="Rewrite" url="index.php/{R:1}" /> 
>
>
>
 
 

复制代码




需要注意的是还要修改 设置Codeigniter的config.php文件,该文件默认在application/config目录下。
这个文件中的下列内容:

PHP复制代码

 
// $config['index_page'] = "index.php"; 把其中的 "index.php" 改成 "" ,如下:
$config['index_page'"";
 

复制代码



希望能帮到一些想在IIS7.5下去掉“index.php”的同鞋...跟详细可以看:
IIS7.5的伪静态URL Rewrite规则(Ci,codeigniter,eMlog,Discuz…)http://qfish.me/2011/05/iis7-5-url-rewrite.htmll

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template