没有“index.php”无法访问/ api / xmlrpc /

I wish to access the Magento API via XML-RPC (without the "index.php").

If I tried the http://magento.url/index.php/api/xmlrpc, there would be a XML response.

<methodResponse>
<fault>
<value>
<struct>
<member>
<name>faultCode</name>
<value>
<int>630</int>
</value>
</member>
<member>
<name>faultString</name>
<value>
<string>Unable to read request</string>
</value>
</member>
</struct>
</value>
</fault>
</methodResponse>

Sorry for the indentation.

However, if I tried with http://magento.url/api/xmlrpc, I would get "NOT FOUND" error in return. May I know how can I resolve this "index.php" issue? T

Thank you.