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

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

时间:2016-12-23 02:12:47      阅读:3441      评论:0      收藏:0      [点我收藏+]

标签:thinkphp   iis   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重写问题解决方法

标签:thinkphp   iis   url重写   

原文地址:http://delking.blog.51cto.com/1120375/1885289

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