2012-09-11 68 views
0

Magento 1.7具有新的REST API,並且它還具有用於.htaccess文件的新重寫規則。我如何重寫nginx中的新規則?Magento 1.7 REST API nginx配置

############################################ 
## uncomment next line to enable light API calls processing 

# RewriteRule ^api/([a-z][0-9a-z_]+)/?$ api.php?type=$1 [QSA,L] 

############################################ 
## rewrite API2 calls to api.php (by now it is REST only) 

    RewriteRule ^api/rest api.php?type=rest [QSA,L] 

回答

2

在這裏你去:

location /api { 
    rewrite ^/api/rest /api.php?type=rest break; 
} 
+3

是的,我被騙了:http://winginx.com/htaccess – Theodores