со следующими правилами php не может создать redirect
другой файл. он зависает в тот момент, когда он попадает header("Content-type: video/x-flv");
header("Location:" . $VIDEO);
или может быть get_headers();
в моем PHP-скрипте.
мои iptables:
iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:22151
ACCEPT tcp -- anywhere anywhere tcp dpt:http
ACCEPT all -- anywhere anywhere
ACCEPT tcp -- anywhere anywhere tcp dpt:webcache
ACCEPT tcp -- anywhere anywhere tcp spt:webcache
ACCEPT tcp -- anywhere anywhere tcp spt:http
DROP all -- anywhere anywhere
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
что я пробовал
iptables -A INPUT -p ICMP --icmp-type 8 -j ACCEPT
как только я удаляю DROP all -- anywhere anywhere
все работает нормально.
PHP не имеет ничего общего с iptables ... и iptables не просматривает содержимое http-сессии. Я думаю, что вы цепляетесь за вещи, которые не существуют.
—
TheCompWiz