HTML 页面重定向(自动跳转) HTML 实现123456<head> <!-- 以下方式只是刷新不跳转到其他页面 --> <meta http-equiv="refresh" content="3"> <!-- 以下方式定时转到其他页面 --> <meta http-equiv="refresh" content="3;url=https://www 2020-09-03 HTML HTML
Nginx 301 重定向 修改配置文件 1nginx.conf 12345678910111213... server { listen 80; server_name a.xxx.com; location / { return 301 https://b.xxx.com$request_uri; 2020-09-02 Server Server Nginx
Ubuntu 开启 SSH 服务 SSH 分 openssh-client 和 openssh-server。 如果你只是想登陆别的机器的 SSH 只需要安装 openssh-client,Ubuntu 有默认安装,如果没有则 1sudo apt install openssh-client 如果要使本机开放 SSH 服务就需要安装 openssh-server 1sudo apt install openssh-server 2020-09-02 Linux Linux Ubuntu
SVN 迁移指定目录 What can it do for us:Migrate a single project from a specify repository to a new svn repository and keep all commit history/Log. E.g.This is the layout of old svn server 1234567891011/ repos/ DL/ 2020-09-01 Server SVN Server
Git 常用命令 git clone1234567891011# public 工程git clone https://github.com/Zlorn/xxx# 带用户名和密码访问git clone https://UserName:password@github.com/Zlorn/xxx# 带邮箱和密码访问,邮箱的 @ 符号需要 URL 转码为 %40git clone https://xxx%40qq.co 2020-08-31 Git Git