台灣地區網際網路路由查測 http://trace.twnic.net.tw/
台灣地區連線網路頻寬查詢系統 http://map.twnic.net.tw/
台灣地區網際網路路由查測 http://trace.twnic.net.tw/
台灣地區連線網路頻寬查詢系統 http://map.twnic.net.tw/
使用Squid Proxy 限制只能瀏覽特定網站,編輯 /etc/squid.conf 設定檔
acl alldst_ip dst 0.0.0.0/0.0.0.0
acl MS dstdomain .microsoft.com .microsoft.com.tw .windowsupdate.com
acl symantec dstdomain .symantec.com
acl AB dstdomain .ab.com
acl ip1 dst 192.168.1.1/255.255.255.255
acl cd dst www.cd.orghttp_access allow MS
http_access allow symantec
http_access allow AB
http_access allow ip1
http_access allow cd
http_access deny alldst_ip#
# And finally deny all other access to this proxy
http_access allow all
http_access deny all
URL | $_SERVER['PHP_SELF'] | $_SERVER['REQUEST_URI'] | $_SERVER['SCRIPT_NAME'] |
http://localhost/example/ | /example/index.php | / | /example/index.php |
http://localhost/example/index.php | /example/index.php | /example/index.php | /example/index.php |
http://localhost/example/index.php?a=test | /example/index.php | /example/index.php?a=test | /example/index.php |
http://localhost/example/index.php/dir/test | /dir/test | /example/index.php/dir/test | /example/index.php |