为什么 mod_rewrite 忽略 ?XDEBUG_PROFILE=true ?
我已将 xdebug 安装到 PHP 中,并希望在 url 字符串中使用 ?XDEBUG_PROFILE=true 执行探查器。但是,当我尝试使用具有 mod_rewrite RewriteRule 和查询字符串的 url 执行此操作时,它不会进行分析。示例:
RewriteRule ^page/(.*)/last$ page.php?pageid=$1 [L]
让它发挥作用的最佳方法是什么?
I have installed xdebug into my PHP and would like to execute the profiler using ?XDEBUG_PROFILE=true in the url string. However, when I try to do this with a url which has a mod_rewrite RewriteRule with a query string, it doesn't profile. Example:
RewriteRule ^page/(.*)/last$ page.php?pageid=$1 [L]
What is the best way to get this to work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要添加
[QSA]
标志以将任何查询字符串附加到重写中。仅允许
XDEBUG_PROFILE
:You need to add the
[QSA]
flag to append any query string onto the rewrite.To only allow
XDEBUG_PROFILE
: