首页 > 代码库 > YII 伪静态 IIS7 方法 web.config
YII 伪静态 IIS7 方法 web.config
YII 伪静态 IIS7 方法 web.config
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <?xml version= "1.0" encoding= "UTF-8" ?> <configuration> <system.webServer> <rewrite> <rules> <rule name= "Main Rule" stopProcessing= "true" > <match url= "^(.*/)*filename" /> <conditions logicalGrouping= "MatchAll" > <add input= "{REQUEST_FILENAME}" matchType = "IsFile" negate= "true" /> <add input= "{REQUEST_FILENAME}" matchType = "IsDirectory" negate= "true" /> </conditions> <action type= "Rewrite" url= "/xiweicrm/index.php" /> </rule> </rules> </rewrite> </system.webServer> </configuration> |
?
1 | <match url= "^(.*/)*<span style=" color: rgb(255, 0, 0); "><strong>filename</strong></span>" /><br>注意把filename 改成对应的yii目录地址,我的这个是把YII嵌套到另一个程序里边了 |
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。