【发布时间】:2010-09-27 00:15:42
【问题描述】:
我想在 Eclipse 的 Zend Framework 中调试我的项目。 Zend Debugger 已经开始运行了,现在我在 Eclipse 中的调试工具有问题。它提供了一个额外的 GET 参数,而 Zend 中的项目不喜欢它。
我尝试谷歌搜索并找到this
我修改了 .htaccess 文件,但没有让它工作。
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.*)?(start_debug=1.*)$ index.php?$2 [L]
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
不知道它是否完全正确,因为page 上的重写规则有一些我的 Apache 无法使用的未知标志。
Eclipse制作的链接是
【问题讨论】:
标签: eclipse debugging zend-framework mod-rewrite zend-debugger