我正在使用带有 mod_rewrite 的 restler 并使用“Accept”HTTP 标头来返回正确的资源表示。在我的生产环境中使用“接受:应用程序/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>