多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
> 注意:Lying并不支持子目录访问,所以请把入口文件夹所在的目录设置为DOCUMENT_ROOT,默认为`web`目录。 如果你的IIS支持web.config,那么你是支持rewrite的,只要把配置文件web.config放在入口文件所在的目录: ~~~xml <configuration> <system.webServer> <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> </system.webServer> </configuration> ~~~ 如果你的IIS不支持web.config,那么乖乖的移步其他框架。