Windows 下端口转发 2018年07月23日 wzh 46 [code lang="js"]netsh interface portproxy add v4tov4 listenport=5555 connectaddress=127.0.0.1 connectport=445 netsh interface p... 阅读全文 0 评论
代码样式 2018年07月14日 wzh 42 [php]这里写你的代码[/php] [css autolinks="false" classname="myclass" collapse="false" firstline="1" gutter="true" highlight="1-3,6,9" ... 阅读全文 0 评论
C++编译执行过程 2018年07月08日 wzh 45 1.g++ -o Helloworld.i -E Helloworld.cpp 源文件编译成中间文件及i文件(预处理文件过程)2.g++ -o Helloworld.s -S HelloWorld.i (预处理文件转换成汇编文件.s)(编译)3.g++ ... 阅读全文 0 评论
nginx 301转跳 2018年07月08日 wzh 45 [sourcecode language="plain"]server { listen 80; server_name wzh.kim *.wzh.kim; return 301 https://$host$request_uri; access_lo... 阅读全文 0 评论
nginx关闭默认站点/空主机头 2018年07月07日 wzh 43 [code lang="js"]server { listen 80 default_server; server_name _; return 500; access_log /home/wwwlogs/access.log; }server { l... 阅读全文 0 评论