Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 web profiler 来调试 symfony,但控制我正在调试的面板并没有改变。无论出于何种原因,它只停留在请求面板上,但是我需要查看实体调试器面板。我怎样才能让它工作,我应该查看哪些文件?
我通过使用 nginx + php-fpm 发现了这个问题。如果您使用相同的配置,则可以通过将 $args 添加到 nginx.conf 中的末尾 try_files 行来解决它:
# ... location / { try_files $uri /app_dev.php?$args }