thinkphp在IIS7.5+环境下部署出现的URL重写问题解决方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp在IIS7.5+环境下部署出现的URL重写问题解决方法相关的知识,希望对你有一定的参考价值。

简单点说,就是需要安装微软本身的url重写插件,可以使用IIS自带的web安装平台去查找安装。如果未安装这个平台,请自行百度搜索。


安装完成后,重启下IIS,在相应站点的IIS设置里会看到URL Rewrite


创建一个空的重写规则


然后在网站的根目录下,找到web.config文件打开


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

复制并替换上述内容到web.config的相应节点,重启IIS站点。

以上是关于thinkphp在IIS7.5+环境下部署出现的URL重写问题解决方法的主要内容,如果未能解决你的问题,请参考以下文章

IIS7和IIS8环境下 ThinkPHP专用URL Rewrite伪静态规则

thinkphp5 IIS7.5 隐藏index.php的方法

IIS7.5下部署Python2.7.3

403 - 禁止在 iis7.5 上部署基本 MVC 3 [重复]

[Windows] IIS7.5 部署ISAPI

ASP4.5应用部署到IIS7.5上,浏览后报HTTP 404错误