通过命令行修改hosts文件 添加IP 域名绑定关系


Windows

假如 www.123456.com IP地址是1.2.3.4

@echo off
echo 1.2.3.4  www.123456.com >> %WINDIR%\system32\drivers\etc\hosts
echo 1.2.3.4  123456.com  >> %WINDIR%\system32\drivers\etc\hosts

根据实际情况修改后另存为bat文件,或者直接在终端执行


Linux

和Windows差不多,只是hosts文件位置不一样

echo 1.2.3.4  www.123456.com >> /etc/hosts
echo 1.2.3.4  123456.com >> /etc/hosts