Nginx + Symfony2 で app_dev.php を非表示にする

nginx のサイト設定
location / { if (!-e $request_filename) { rewrite ^/(.*)$ /app_dev.php?q=$1 last; } }