我在使用IIS 8.5和php Version 7.0.21的Windows Server上使用Mantis 2.11.1。我启用了REST API($ g_webservice_rest_enabled = ON;),创建了一个api-token并使用Postman测试了API。
对于带有标题授权的电话http://srvmantis.polymania.com/mantisbt/api/rest/Issues:myAPIKey我得到了404 - 未找到文件或目录'结果。
答案 0 :(得分:0)
我遇到了同样的问题,我用这种方式解决了这个问题: 如果您还没有,请先在IIS中重新安装/启用URL重写 然后将它放在system.webServer部分中的Mantis的web.config中:
<rewrite>
<rules>
<rule name="redirect to api" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Rewrite" url="api/rest/index.php/{R:1}" />
</rule>
</rules>
</rewrite>
希望这会有所帮助
再见 克里斯蒂安