iis环境下部分环境检测无法通过
将网站程序上传到FTP根目录,注意不是wwwroot下, public除外,public目录下的文件上传到wwwroot下
在wwwroot目录下新建一个文件,命名为web.config,复制以下代码保存
<?xml version="1.0"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="rewrite1" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
修改php.ini文件中always_populate_raw_post_data = -1 (为off无法检测通过)
访问域名进行安装