<?php
$url = 'http://google.com/';
header('Location: ' . $url);
Параметр xdebug в php.ini:
zend_extension=path_to_xdebug.dll
xdebug.remote_enable=1
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
Вышеупомянутое перенаправление header()
будет работать, пока я удаляю настройку xdebug.
Кто-нибудь сталкивался с этой проблемой?