如何在窗口服务器中使用Zend框架

时间:2015-02-13 14:30:57

标签: zend-framework

如何在窗口服务器中使用Zend Framework?我知道在窗口服务器上不支持.htaccess文件,所以我创建了一个web.config文件,但这仍然无效。这是我的web.config:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
    <rewrite>
        <rules>
            <rule name="index-bootstrap">
                <conditions>
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                </conditions>
                <match url=".?" />
                <action type="Rewrite" url="index.php" />
            </rule>
        </rules>
    </rewrite>
</system.webServer>

1 个答案:

答案 0 :(得分:0)