IIS 7安装云模块(YunMOK)程序配置伪静态规则

最近一个用户在安装云模块(YunMOK)程序时提示不支持URL重写,原因是使用了IIS 7,其实主机本身支持重写,只是伪静态规则不对导致。

2016-11-20_101752.jpg

解决办法

将下面的伪静态规则另存为web.config并上传到站点根目录使伪静态规则生效,然后重新访问安装。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="basic1">
                    <match url="^y$|^y/" ignoreCase="false" />
                    <action type="Rewrite" url="/index.php" />
                </rule>
                <rule name="basic2">
                    <match url=".*" />
                    <conditions>
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="/index.php" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

参考与:云模块_YunMOK常见问题集锦

标签: 云模块

发表评论: