In previous articles we tested disk performance and CPU of Vultr, Linode and DigitalOcean. We will see network speed of each competitor. Network Performance network speed of your virtual private server depends on many things like hosting company’s actual network capacity, and transit providers, BGP peering etc. your noisy neighbors can affect network speed you’re […]
apache主机使用htaccess自动跳转http到https
在主机根目录.htaccess文件内,添加如下内容: RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] 解释一下,将所有http访问请求,跳转到https访问。 如果你的主机根目录已有.htaccess文件,不必重复写RewriteEngine On这一行内容,只需要把下面两行的内容添加到下面即可。