修剪错误404路线

时间:2017-01-06 16:59:32

标签: php rest iis web-config slim

我的应用在尝试访问路径时给出错误(找不到404):

$app->get('/test/', function () { 
  echo "Hello, World! test"; 
});

但是没关系,尝试访问时:

$app->get('/', function () { 
  echo "Hello, World!"; 
});

需要配置Allowoverride All吗? 我怎么做,使用web.config IIS?]

UPDATE .. 我使用代码创建web.config文件: 现在不使用htaccess,只有web.config ..但仍无法正常工作

网址重写模块错误。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="slim" patternSyntax="Wildcard">
                    <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>

1 个答案:

答案 0 :(得分:0)

问题已解决; D

我相信是php(5.4.x)版本和学说需要(5.5.x +)