IIS伪静态配置
<?xml version="1.0" ?>
<rules>

<rule name="规则 1_rewrite" stopProcessing="true">
    <match ignoreCase="false" url="."/>
    <conditions>
        <add ignoreCase="false" input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
        <add ignoreCase="false" input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
    </conditions>
    <action type="Rewrite" url="/index.php"/>
</rule>

</rules>

在连接数据库时使用localhost TTFB最高到达了4s多
将网站根目录下的config.inc.php文件中最下方的localhost改成127.0.0.1即可解决

最后修改:2020 年 10 月 28 日
如果觉得我的文章对你有用,请随意赞赏