我正在使用带有mod_rewrite的restler并使用“Accept”HTTP标头来返回正确的资源表示。 在我的生产环境中使用“Accept:application / json”发出请求时:
http://example.com/site/collection/1/响应正确并格式化为json。
http://example.com/site/collection/1响应正确但格式为xml。
在我的开发环境中,这两个请求都返回与json格式相同的结果,这就是我希望的方式。 在这两种环境中,我都有.htaccess文件:
DirectoryIndex index.php
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^$ index.php [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
<ifModule mod_php5.c>
php_flag display_errors Off
</IfModule>