2013-09-23 64 views
2

我需要知道如何讓guest用戶從magento中使用rest方法獲取一些數據。根據magento商業網站,我創建並遵循了所有角色和用戶創建。 任何人都可以請幫助我通過指出明確的步驟,以獲得產品的詳細信息從一個magento網站使用myhost/api/rest/products的客人非常感謝您提前!/api/rest在Mgento rest服務中找不到

回答

1

如果您使用Ubuntu,你必須做到以下幾點,

1.Goto等-Apache2的-apache2.conf和使能寫的mod文件,並作出backup.Then編輯原始文件,如下所示

從終端使用

sudo a2enmod rewrite 

<Directory /> Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Allow from all </Directory>

<Directory /var/www/html/>           
    Options Indexes FollowSymLinks Includes ExecCGI 
    AllowOverride All 
    Allow from All 
</Directory> 

2.啓用模式重寫

然後重新啓動apache並嘗試使用產品url,如果您使用windows google如何在windows中做同樣的事情。