为什么 mod_rewrite 忽略 ?XDEBUG_PROFILE=true ?

发布于 2024-11-29 19:22:27 字数 245 浏览 1 评论 0原文

我已将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空气里的味道 2024-12-06 19:22:27

您需要添加 [QSA] 标志以将任何查询字符串附加到重写中。

RewriteRule ^page/(.*)/last$       page.php?pageid=$1 [L,QSA]

仅允许 XDEBUG_PROFILE

RewriteCond %{QUERY_STRING} ^XDEBUG_PROFILE
RewriteRule ^page/(.*)/last$       page.php?pageid=$1&XDEBUG_PROFILE=1 [L]

# Other requests go through as normal
RewriteRule ^page/(.*)/last$       page.php?pageid=$1 [L]

You need to add the [QSA] flag to append any query string onto the rewrite.

RewriteRule ^page/(.*)/last$       page.php?pageid=$1 [L,QSA]

To only allow XDEBUG_PROFILE:

RewriteCond %{QUERY_STRING} ^XDEBUG_PROFILE
RewriteRule ^page/(.*)/last$       page.php?pageid=$1&XDEBUG_PROFILE=1 [L]

# Other requests go through as normal
RewriteRule ^page/(.*)/last$       page.php?pageid=$1 [L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文